diff options
author | baude <bbaude@redhat.com> | 2019-07-03 14:35:11 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-07-03 15:41:33 -0500 |
commit | fec1de6ef4b3f769ba0906cda948a3215709cd37 (patch) | |
tree | 416a56f712f80f538d4b6ed5bc12ae43aaa07c4f /pkg/tracing | |
parent | f5593d305f68409cf093ea6b66a9d1f121ec0fd6 (diff) | |
download | podman-fec1de6ef4b3f769ba0906cda948a3215709cd37.tar.gz podman-fec1de6ef4b3f769ba0906cda948a3215709cd37.tar.bz2 podman-fec1de6ef4b3f769ba0906cda948a3215709cd37.zip |
trivial cleanups from golang
the results of a code cleanup performed by the goland IDE.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/tracing')
-rw-r--r-- | pkg/tracing/tracing.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/tracing/tracing.go b/pkg/tracing/tracing.go index cae76dee8..d028ddf8f 100644 --- a/pkg/tracing/tracing.go +++ b/pkg/tracing/tracing.go @@ -4,9 +4,9 @@ import ( "fmt" "io" - opentracing "github.com/opentracing/opentracing-go" - jaeger "github.com/uber/jaeger-client-go" - config "github.com/uber/jaeger-client-go/config" + "github.com/opentracing/opentracing-go" + "github.com/uber/jaeger-client-go" + "github.com/uber/jaeger-client-go/config" ) // Init returns an instance of Jaeger Tracer that samples 100% of traces and logs all spans to stdout. |