diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-08 09:40:22 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-08 09:40:22 +0200 |
| commit | eb14ca0154c191b953c7f5c576065363904c222a (patch) | |
| tree | 58af9ae8ef893bffe85654dbd2ea64e100746a6c /cmd/dmap/main.go | |
| parent | 357aae745adbaa9997f7e80e7e0131e743637f1c (diff) | |
task: pass explicit base context into client runtime (task 381)
Diffstat (limited to 'cmd/dmap/main.go')
| -rw-r--r-- | cmd/dmap/main.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/dmap/main.go b/cmd/dmap/main.go index ca3981f..33ace65 100644 --- a/cmd/dmap/main.go +++ b/cmd/dmap/main.go @@ -1,6 +1,7 @@ package main import ( + "context" "flag" "os" @@ -62,7 +63,7 @@ func main() { version.PrintAndExit() } - runtime := cli.NewClientRuntime(nil, profileFlags, "dmap") + runtime := cli.NewClientRuntime(context.Background(), profileFlags, "dmap") runtime.StartPProf(pprof) runtime.LogStartupMetrics() |
