13cc30ebeb
To see why I think this is a good change lets look at why I am making it My disk was full, which means GC was happening agressively. So by the time I called the logging endpoint from the SDK, the logs were GC'd The error I was getting before was: ``` invalid character 'i' in literal false (expecting 'l') ``` Now the error I get is: ``` failed to decode log endpoint response as JSON: "failed to list entries: open /tmp/nomad.data.4219353875/alloc/f11fee50-2b66-a7a2-d3ec-8442cb3d557a/alloc/logs: no such file or directory" ``` Still not super descriptive but much more debugable
24 lines
682 B
Modula-2
24 lines
682 B
Modula-2
module github.com/hashicorp/nomad/api
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/docker/go-units v0.5.0
|
|
github.com/gorilla/websocket v1.5.0
|
|
github.com/hashicorp/cronexpr v1.1.1
|
|
github.com/hashicorp/go-cleanhttp v0.5.2
|
|
github.com/hashicorp/go-multierror v1.1.1
|
|
github.com/hashicorp/go-rootcerts v1.0.2
|
|
github.com/mitchellh/go-testing-interface v1.14.1
|
|
github.com/mitchellh/mapstructure v1.5.0
|
|
github.com/shoenig/test v0.6.0
|
|
golang.org/x/exp v0.0.0-20230108222341-4b8118a2686a
|
|
)
|
|
|
|
require (
|
|
github.com/google/go-cmp v0.5.9 // indirect
|
|
github.com/hashicorp/errwrap v1.0.0 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
github.com/stretchr/testify v1.8.1 // indirect
|
|
)
|