diff options
| author | Alan Donovan <adonovan@google.com> | 2024-05-15 17:41:56 -0400 |
|---|---|---|
| committer | Alan Donovan <adonovan@google.com> | 2024-05-16 15:19:04 +0000 |
| commit | a22cb5cabe2bcc8ed02c43a66a1bd319cb28e89c (patch) | |
| tree | bee3ad25c96cc9752b1aefdf1c89986dfc72426b /src/runtime/debug/example_monitor_test.go | |
| parent | 6cd066f8b22290a1737a19d25f5dd899f720180a (diff) | |
| download | go-a22cb5cabe2bcc8ed02c43a66a1bd319cb28e89c.tar.xz | |
runtime/debug: eliminate temporary variadicity from SetCrashOutput
Updates #67182
Change-Id: I33fc8c515f4a9d120262ba30f61aea80ede5e9f8
Reviewed-on: https://go-review.googlesource.com/c/go/+/585420
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Austin Clements <austin@google.com>
Diffstat (limited to 'src/runtime/debug/example_monitor_test.go')
| -rw-r--r-- | src/runtime/debug/example_monitor_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/debug/example_monitor_test.go b/src/runtime/debug/example_monitor_test.go index 5a1f4e1417..b077e7adb3 100644 --- a/src/runtime/debug/example_monitor_test.go +++ b/src/runtime/debug/example_monitor_test.go @@ -91,7 +91,7 @@ func monitor() { if err != nil { log.Fatalf("StdinPipe: %v", err) } - debug.SetCrashOutput(pipe.(*os.File)) // (this conversion is safe) + debug.SetCrashOutput(pipe.(*os.File), debug.CrashOptions{}) // (this conversion is safe) if err := cmd.Start(); err != nil { log.Fatalf("can't start monitor: %v", err) } |
