Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unexpected EOF revisited #4225

Open
judell opened this issue Apr 3, 2024 · 1 comment
Open

unexpected EOF revisited #4225

judell opened this issue Apr 3, 2024 · 1 comment
Labels
bug Something isn't working

Comments

@judell
Copy link
Contributor

judell commented Apr 3, 2024

I've run into variations of #1388 a number of times.

Here's one that just happened it in v0.22.1.

with categories(category) as (
  values
    ( 'cloud-computing' ),
    ( 'machine-learning' )
),
feed_links as (
   select 
     'https://www.infoworld.com/category/' || category || '/index.rss' as feed_link
   from
      categories 
)
select
  *
from
  rss_item r
join
  feed_links f
on
  r.feed_link = f.feed_link

This crashed with unexpected EOF and the db log said:

SIGSEGV: segmentation violation
PC=0x7f4b08 m=1 sigcode=1
signal arrived during cgo execution

I then tried this:

feedlinks as materialized

And the query works as expected.

I have suspected this is related to dynamic construction of column values, in this case using string concatenation, and here is a clear illustration of it. Without the concatentation, it has seemed that as materialized is not required, this worked.

with categories(category) as (
  values
    ( 'cloud-computing' ),
    ( 'machine-learning' )
),
feed_links as (
   select 
     'https://www.infoworld.com/category/cloud-computing/index.rss' as feed_link
   from
      categories 
)
select
  *
from
  rss_item r
join
  feed_links f
on
  r.feed_link = f.feed_link

Frustratingly this does not seem to be reproducible. After a steampipe restart I was able to run the query with concatenation and without as materialized.

Here is a different case that does seem to be reliably reproducible, and I think more closely resembles #1388. Without as materialized this happens, with as materialized the query is OK.

2024-04-03 16:59:09.757 UTC [949121] WARNING:  terminating connection because of unexpected SIGQUIT signal
2024-04-03 16:59:09.760 UTC [948631] LOG:  server process (PID 949121) exited with exit code 2
2024-04-03 16:59:09.760 UTC [948631] DETAIL:  Failed process was running: with prompts as (
          select
            'repeat the name ' || name || ' and add a steampunk last name' as prompt
          from
             friends
        )
          select
            completion
          from
            prompts p
          join
            openai_completion o
          on
            p.prompt = o.prompt
2024-04-03 16:59:09.760 UTC [948631] LOG:  terminating any other active server processes
2024-04-03 16:59:09.762 UTC [949236] LOG:  connection received: host=127.0.0.1 port=59012
2024-04-03 16:59:09.762 UTC [949236] LOG:  PID 949121 in cancel request did not match any process
2024-04-03 16:59:09.763 UTC [949237] LOG:  connection received: host=127.0.0.1 port=59026
2024-04-03 16:59:09.763 UTC [949237] LOG:  PID 949122 in cancel request did not match any process
2024-04-03 16:59:09.765 UTC [948631] LOG:  all server processes terminated; reinitializing
2024-04-03 16:59:09.786 UTC [949238] LOG:  database system was interrupted; last known up at 2024-04-03 16:58:50 UTC
2024-04-03 16:59:09.924 UTC [949238] LOG:  database system was not properly shut down; automatic recovery in progress
2024-04-03 16:59:09.927 UTC [949238] LOG:  redo starts at 1/844F28
2024-04-03 16:59:09.936 UTC [949238] LOG:  invalid record length at 1/D7A778: wanted 24, got 0
2024-04-03 16:59:09.936 UTC [949238] LOG:  redo done at 1/D7A6D0 system usage: CPU: user: 0.00 s, system: 0.00 s, elapsed: 0.00 s
2024-04-03 16:59:09.962 UTC [948631] LOG:  database system is ready to accept connections

This works.

with friends(name) as (
  values 
    ('Curly'),
    ('Larry'),
    ('Moe')
),
prompts as (
  select
    'repeat the name ' || name || ' and add a steampunk last name' as prompt
  from
     friends
)
  select
    completion
  from
    prompts p
  join
    openai_completion o
  on
    p.prompt = o.prompt

And the observation about concatenation holds here too. This works.

...
prompts as (
  select
    'repeat the name Curly and add a steampunk last name' as prompt
  from
     friends
)
...
@judell judell added the bug Something isn't working label Apr 3, 2024
@kaidaguerre
Copy link
Contributor

kaidaguerre commented Apr 18, 2024

I have seen this very intermittently. Seems to be a crash in the C code for _Cfunc_initializeExecState

here is the full db stack trace when this happens:

PC=0x10f81f310 m=1 sigcode=2
signal arrived during cgo execution

goroutine 17 [syscall, locked to thread]:
runtime.cgocall(0x110416d20, 0x14000947c08)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/cgocall.go:157 +0x44 fp=0x14000947bd0 sp=0x14000947b90 pc=0x10f825e34
main._Cfunc_initializeExecState(0x159813cc8)
	_cgo_gotypes.go:3854 +0x34 fp=0x14000947c00 sp=0x14000947bd0 pc=0x110404cf4
main.goFdwBeginForeignScan.func3(0x14000128660?)
	/Users/runner/work/steampipe-postgres-fdw/steampipe-postgres-fdw/fdw.go:282 +0x40 fp=0x14000947c40 sp=0x14000947c00 pc=0x110407ec0
main.goFdwBeginForeignScan(0x159849790, 0x10)
	/Users/runner/work/steampipe-postgres-fdw/steampipe-postgres-fdw/fdw.go:282 +0x208 fp=0x14000947df0 sp=0x14000947c40 pc=0x110407968
_cgoexp_8bc8545f8476_goFdwBeginForeignScan(0x14000947e58?)
	_cgo_gotypes.go:4144 +0x28 fp=0x14000947e10 sp=0x14000947df0 pc=0x110412f68
runtime.cgocallbackg1(0x110412f40, 0x14000947fe0?, 0x0)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/cgocall.go:399 +0x23c fp=0x14000947ef0 sp=0x14000947e10 pc=0x10f82645c
runtime.cgocallbackg(0x0?, 0x0?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/cgocall.go:315 +0x104 fp=0x14000947f80 sp=0x14000947ef0 pc=0x10f826194
runtime.cgocallbackg(0x110412f40, 0x16dbe6230, 0x0)
	<autogenerated>:1 +0x1c fp=0x14000947fb0 sp=0x14000947f80 pc=0x10f892c6c
runtime.cgocallback(0x0, 0x0, 0x0)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1105 +0xb0 fp=0x14000947fe0 sp=0x14000947fb0 pc=0x10f890a30
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000947fe0 sp=0x14000947fe0 pc=0x10f890b24

goroutine 49 [select]:
runtime.gopark(0x1400019dfa8?, 0x2?, 0x90?, 0x89?, 0x1400019df8c?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x1400019de30 sp=0x1400019de10 pc=0x10f85c618
runtime.selectgo(0x1400019dfa8, 0x1400019df88, 0x10fd0d470?, 0x0, 0x0?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x1400019df40 sp=0x1400019de30 pc=0x10f86d798
google.golang.org/grpc.newClientStreamWithParams.func4()
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:392 +0x8c fp=0x1400019dfd0 sp=0x1400019df40 pc=0x10fcc108c
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x1400019dfd0 sp=0x1400019dfd0 pc=0x10f890b24
created by google.golang.org/grpc.newClientStreamWithParams in goroutine 17
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:391 +0xbd0

goroutine 2 [force gc (idle)]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000064f90 sp=0x14000064f70 pc=0x10f85c618
runtime.goparkunlock(...)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:404
runtime.forcegchelper()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:322 +0xb8 fp=0x14000064fd0 sp=0x14000064f90 pc=0x10f85c478
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000064fd0 sp=0x14000064fd0 pc=0x10f890b24
created by runtime.init.6 in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:310 +0x24

goroutine 3 [GC sweep wait]:
runtime.gopark(0x1?, 0x0?, 0x0?, 0x0?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000065760 sp=0x14000065740 pc=0x10f85c618
runtime.goparkunlock(...)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:404
runtime.bgsweep(0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgcsweep.go:321 +0x108 fp=0x140000657b0 sp=0x14000065760 pc=0x10f847048
runtime.gcenable.func1()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:200 +0x28 fp=0x140000657d0 sp=0x140000657b0 pc=0x10f83bad8
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x140000657d0 sp=0x140000657d0 pc=0x10f890b24
created by runtime.gcenable in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:200 +0x6c

goroutine 4 [GC scavenge wait]:
runtime.gopark(0x1400007e000?, 0x110838e10?, 0x0?, 0x0?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000065f50 sp=0x14000065f30 pc=0x10f85c618
runtime.goparkunlock(...)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:404
runtime.(*scavengerState).park(0x1115903c0)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgcscavenge.go:425 +0x5c fp=0x14000065f80 sp=0x14000065f50 pc=0x10f84488c
runtime.bgscavenge(0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgcscavenge.go:658 +0xac fp=0x14000065fb0 sp=0x14000065f80 pc=0x10f844e4c
runtime.gcenable.func2()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:201 +0x28 fp=0x14000065fd0 sp=0x14000065fb0 pc=0x10f83ba78
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000065fd0 sp=0x14000065fd0 pc=0x10f890b24
created by runtime.gcenable in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:201 +0xac

goroutine 19 [finalizer wait]:
runtime.gopark(0x0?, 0x110b78c60?, 0xa0?, 0x49?, 0x2000000020?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000064580 sp=0x14000064560 pc=0x10f85c618
runtime.runfinq()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mfinal.go:193 +0x108 fp=0x140000647d0 sp=0x14000064580 pc=0x10f83ab88
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x140000647d0 sp=0x140000647d0 pc=0x10f890b24
created by runtime.createfing in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mfinal.go:163 +0x80

goroutine 20 [GC worker (idle)]:
runtime.gopark(0x0?, 0x0?, 0x0?, 0x0?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000060730 sp=0x14000060710 pc=0x10f85c618
runtime.gcBgMarkWorker()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1295 +0xd8 fp=0x140000607d0 sp=0x14000060730 pc=0x10f83d738
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x140000607d0 sp=0x140000607d0 pc=0x10f890b24
created by runtime.gcBgMarkStartWorkers in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1219 +0x28

goroutine 5 [GC worker (idle)]:
runtime.gopark(0x245772b7b273?, 0x0?, 0x0?, 0x0?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000066730 sp=0x14000066710 pc=0x10f85c618
runtime.gcBgMarkWorker()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1295 +0xd8 fp=0x140000667d0 sp=0x14000066730 pc=0x10f83d738
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x140000667d0 sp=0x140000667d0 pc=0x10f890b24
created by runtime.gcBgMarkStartWorkers in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1219 +0x28

goroutine 35 [GC worker (idle)]:
runtime.gopark(0x245772ba5106?, 0x3?, 0x9?, 0x45?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x1400019e730 sp=0x1400019e710 pc=0x10f85c618
runtime.gcBgMarkWorker()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1295 +0xd8 fp=0x1400019e7d0 sp=0x1400019e730 pc=0x10f83d738
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x1400019e7d0 sp=0x1400019e7d0 pc=0x10f890b24
created by runtime.gcBgMarkStartWorkers in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1219 +0x28

goroutine 21 [GC worker (idle)]:
runtime.gopark(0x110b78e98?, 0x140000a4020?, 0x1a?, 0x14?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000060f30 sp=0x14000060f10 pc=0x10f85c618
runtime.gcBgMarkWorker()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1295 +0xd8 fp=0x14000060fd0 sp=0x14000060f30 pc=0x10f83d738
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000060fd0 sp=0x14000060fd0 pc=0x10f890b24
created by runtime.gcBgMarkStartWorkers in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1219 +0x28

goroutine 6 [GC worker (idle)]:
runtime.gopark(0x245772ba4383?, 0x3?, 0xf6?, 0xa7?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000066f30 sp=0x14000066f10 pc=0x10f85c618
runtime.gcBgMarkWorker()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1295 +0xd8 fp=0x14000066fd0 sp=0x14000066f30 pc=0x10f83d738
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000066fd0 sp=0x14000066fd0 pc=0x10f890b24
created by runtime.gcBgMarkStartWorkers in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1219 +0x28

goroutine 36 [GC worker (idle)]:
runtime.gopark(0x245772ba68c9?, 0x1?, 0x34?, 0x98?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x1400019ef30 sp=0x1400019ef10 pc=0x10f85c618
runtime.gcBgMarkWorker()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1295 +0xd8 fp=0x1400019efd0 sp=0x1400019ef30 pc=0x10f83d738
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x1400019efd0 sp=0x1400019efd0 pc=0x10f890b24
created by runtime.gcBgMarkStartWorkers in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1219 +0x28

goroutine 37 [GC worker (idle)]:
runtime.gopark(0x245772b62f14?, 0x3?, 0x85?, 0xb8?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x1400019f730 sp=0x1400019f710 pc=0x10f85c618
runtime.gcBgMarkWorker()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1295 +0xd8 fp=0x1400019f7d0 sp=0x1400019f730 pc=0x10f83d738
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x1400019f7d0 sp=0x1400019f7d0 pc=0x10f890b24
created by runtime.gcBgMarkStartWorkers in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1219 +0x28

goroutine 22 [GC worker (idle)]:
runtime.gopark(0x245772b77c16?, 0x3?, 0xa9?, 0x27?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000061730 sp=0x14000061710 pc=0x10f85c618
runtime.gcBgMarkWorker()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1295 +0xd8 fp=0x140000617d0 sp=0x14000061730 pc=0x10f83d738
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x140000617d0 sp=0x140000617d0 pc=0x10f890b24
created by runtime.gcBgMarkStartWorkers in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1219 +0x28

goroutine 38 [GC worker (idle)]:
runtime.gopark(0x245772b7a038?, 0x3?, 0x6c?, 0x72?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x1400019ff30 sp=0x1400019ff10 pc=0x10f85c618
runtime.gcBgMarkWorker()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1295 +0xd8 fp=0x1400019ffd0 sp=0x1400019ff30 pc=0x10f83d738
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x1400019ffd0 sp=0x1400019ffd0 pc=0x10f890b24
created by runtime.gcBgMarkStartWorkers in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1219 +0x28

goroutine 7 [GC worker (idle)]:
runtime.gopark(0x245772ba3cd7?, 0x3?, 0x46?, 0x10?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000067730 sp=0x14000067710 pc=0x10f85c618
runtime.gcBgMarkWorker()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1295 +0xd8 fp=0x140000677d0 sp=0x14000067730 pc=0x10f83d738
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x140000677d0 sp=0x140000677d0 pc=0x10f890b24
created by runtime.gcBgMarkStartWorkers in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1219 +0x28

goroutine 39 [GC worker (idle)]:
runtime.gopark(0x245772bab37e?, 0x1?, 0xb2?, 0x89?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x140001a0730 sp=0x140001a0710 pc=0x10f85c618
runtime.gcBgMarkWorker()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1295 +0xd8 fp=0x140001a07d0 sp=0x140001a0730 pc=0x10f83d738
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x140001a07d0 sp=0x140001a07d0 pc=0x10f890b24
created by runtime.gcBgMarkStartWorkers in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1219 +0x28

goroutine 23 [GC worker (idle)]:
runtime.gopark(0x1115c9000?, 0x1?, 0xc8?, 0xa2?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000061f30 sp=0x14000061f10 pc=0x10f85c618
runtime.gcBgMarkWorker()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1295 +0xd8 fp=0x14000061fd0 sp=0x14000061f30 pc=0x10f83d738
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000061fd0 sp=0x14000061fd0 pc=0x10f890b24
created by runtime.gcBgMarkStartWorkers in goroutine 1
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/mgc.go:1219 +0x28

goroutine 8 [select]:
runtime.gopark(0x140001a0f80?, 0x2?, 0x58?, 0xe?, 0x140001a0f64?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x140001a0e10 sp=0x140001a0df0 pc=0x10f85c618
runtime.selectgo(0x140001a0f80, 0x140001a0f60, 0x0?, 0x0, 0x0?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x140001a0f20 sp=0x140001a0e10 pc=0x10f86d798
github.com/golang/glog.(*fileSink).flushDaemon(0x1115901b8)
	/Users/runner/go/pkg/mod/github.com/golang/[email protected]/glog_file.go:351 +0xa8 fp=0x140001a0fb0 sp=0x140001a0f20 pc=0x110185748
github.com/golang/glog.init.1.func1()
	/Users/runner/go/pkg/mod/github.com/golang/[email protected]/glog_file.go:166 +0x28 fp=0x140001a0fd0 sp=0x140001a0fb0 pc=0x110184938
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x140001a0fd0 sp=0x140001a0fd0 pc=0x10f890b24
created by github.com/golang/glog.init.1 in goroutine 1
	/Users/runner/go/pkg/mod/github.com/golang/[email protected]/glog_file.go:166 +0x150

goroutine 9 [select]:
runtime.gopark(0x140001a1778?, 0x3?, 0x0?, 0x80?, 0x140001a1762?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x140001a1610 sp=0x140001a15f0 pc=0x10f85c618
runtime.selectgo(0x140001a1778, 0x140001a175c, 0x140000a7f80?, 0x0, 0x0?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x140001a1720 sp=0x140001a1610 pc=0x10f86d798
go.opencensus.io/stats/view.(*worker).start(0x140000a7f80)
	/Users/runner/go/pkg/mod/[email protected]/stats/view/worker.go:292 +0x88 fp=0x140001a17b0 sp=0x140001a1720 pc=0x10ff3ee08
go.opencensus.io/stats/view.init.0.func1()
	/Users/runner/go/pkg/mod/[email protected]/stats/view/worker.go:34 +0x28 fp=0x140001a17d0 sp=0x140001a17b0 pc=0x10ff3e1a8
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x140001a17d0 sp=0x140001a17d0 pc=0x10f890b24
created by go.opencensus.io/stats/view.init.0 in goroutine 1
	/Users/runner/go/pkg/mod/[email protected]/stats/view/worker.go:34 +0x98

goroutine 44 [select]:
runtime.gopark(0x14000190bc8?, 0x2?, 0x28?, 0xb?, 0x14000190bc4?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000190a70 sp=0x14000190a50 pc=0x10f85c618
runtime.selectgo(0x14000190bc8, 0x14000190bc0, 0x0?, 0x0, 0x0?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x14000190b80 sp=0x14000190a70 pc=0x10f86d798
google.golang.org/grpc/internal/transport.(*Stream).waitOnHeader(0x1400017efc0)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/transport.go:330 +0x6c fp=0x14000190bf0 sp=0x14000190b80 pc=0x10fc567bc
google.golang.org/grpc/internal/transport.(*Stream).RecvCompress(...)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/transport.go:345
google.golang.org/grpc.(*csAttempt).recvMsg(0x14000822a90, {0x110a8fe00?, 0x140008f6230}, 0x10f82ec58?)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:1071 +0x7c fp=0x14000190d20 sp=0x14000190bf0 pc=0x10fcc48dc
google.golang.org/grpc.(*clientStream).RecvMsg.func1(0x0?)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:928 +0x28 fp=0x14000190d50 sp=0x14000190d20 pc=0x10fcc3b58
google.golang.org/grpc.(*clientStream).withRetry(0x1400017ec60, 0x14000190e58, 0x14000190e48)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:777 +0x188 fp=0x14000190dd0 sp=0x14000190d50 pc=0x10fcc2a58
google.golang.org/grpc.(*clientStream).RecvMsg(0x1400017ec60, {0x110a8fe00?, 0x140008f6230?})
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:927 +0xc0 fp=0x14000190ea0 sp=0x14000190dd0 pc=0x10fcc39e0
github.com/hashicorp/go-plugin/internal/plugin.(*gRPCStdioStreamStdioClient).Recv(0x1400080a860)
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/internal/plugin/grpc_stdio_grpc.pb.go:75 +0x58 fp=0x14000190ed0 sp=0x14000190ea0 pc=0x10fccd418
github.com/hashicorp/go-plugin.(*grpcStdioClient).Run(0x14000988600, {0x110b803a0, 0x1115c6da0}, {0x110b803a0, 0x1115c6da0})
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_stdio.go:135 +0xc8 fp=0x14000190f90 sp=0x14000190ed0 pc=0x10fd11328
github.com/hashicorp/go-plugin.newGRPCClient.func3()
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_client.go:80 +0x38 fp=0x14000190fd0 sp=0x14000190f90 pc=0x10fd10cf8
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000190fd0 sp=0x14000190fd0 pc=0x10f890b24
created by github.com/hashicorp/go-plugin.newGRPCClient in goroutine 17
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_client.go:80 +0x4ac

goroutine 41 [select]:
runtime.gopark(0x1400019a738?, 0x2?, 0x0?, 0x0?, 0x1400019a72c?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x1400019a5e0 sp=0x1400019a5c0 pc=0x10f85c618
runtime.selectgo(0x1400019a738, 0x1400019a728, 0x100000000000000?, 0x0, 0x11091c040?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x1400019a6f0 sp=0x1400019a5e0 pc=0x10f86d798
github.com/hashicorp/go-plugin.(*gRPCBrokerClientImpl).Recv(0x14000990438?)
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_broker.go:238 +0x58 fp=0x1400019a760 sp=0x1400019a6f0 pc=0x10fd0d758
github.com/hashicorp/go-plugin.(*GRPCBroker).Run(0x14000986160)
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_broker.go:582 +0x50 fp=0x1400019a7b0 sp=0x1400019a760 pc=0x10fd0f3d0
github.com/hashicorp/go-plugin.newGRPCClient.func1()
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_client.go:72 +0x28 fp=0x1400019a7d0 sp=0x1400019a7b0 pc=0x10fd10db8
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x1400019a7d0 sp=0x1400019a7d0 pc=0x10f890b24
created by github.com/hashicorp/go-plugin.newGRPCClient in goroutine 17
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_client.go:72 +0x368

goroutine 43 [select]:
runtime.gopark(0x1400019afa8?, 0x2?, 0x0?, 0x0?, 0x1400019af8c?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x1400019ae30 sp=0x1400019ae10 pc=0x10f85c618
runtime.selectgo(0x1400019afa8, 0x1400019af88, 0x14000888000?, 0x0, 0x14000988480?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x1400019af40 sp=0x1400019ae30 pc=0x10f86d798
google.golang.org/grpc.newClientStreamWithParams.func4()
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:392 +0x8c fp=0x1400019afd0 sp=0x1400019af40 pc=0x10fcc108c
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x1400019afd0 sp=0x1400019afd0 pc=0x10f890b24
created by google.golang.org/grpc.newClientStreamWithParams in goroutine 17
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:391 +0xbd0

goroutine 69 [chan receive]:
runtime.gopark(0x14000048a00?, 0x14000818008?, 0x50?, 0x0?, 0x2457ad818b5b?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000195dd0 sp=0x14000195db0 pc=0x10f85c618
runtime.chanrecv(0x14000816000, 0x14000195ed8, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/chan.go:583 +0x414 fp=0x14000195e50 sp=0x14000195dd0 pc=0x10f8283d4
runtime.chanrecv2(0x3b9aca00?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/chan.go:447 +0x14 fp=0x14000195e80 sp=0x14000195e50 pc=0x10f827fa4
github.com/hashicorp/go-plugin/internal/cmdrunner.pidWait(0x0?)
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/internal/cmdrunner/process.go:18 +0x78 fp=0x14000195f00 sp=0x14000195e80 pc=0x10fac3488
github.com/hashicorp/go-plugin/internal/cmdrunner.(*CmdAttachedRunner).Wait(0x0?, {0x0?, 0x0?})
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/internal/cmdrunner/cmd_reattach.go:54 +0x20 fp=0x14000195f20 sp=0x14000195f00 pc=0x10fac24c0
github.com/hashicorp/go-plugin.(*Client).reattach.func1({0x110b91160?, 0x14000990408?})
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/client.go:987 +0x94 fp=0x14000195fb0 sp=0x14000195f20 pc=0x10fd0b894
github.com/hashicorp/go-plugin.(*Client).reattach.func3()
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/client.go:996 +0x38 fp=0x14000195fd0 sp=0x14000195fb0 pc=0x10fd0b7c8
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000195fd0 sp=0x14000195fd0 pc=0x10f890b24
created by github.com/hashicorp/go-plugin.(*Client).reattach in goroutine 17
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/client.go:980 +0x178

goroutine 70 [select]:
runtime.gopark(0x14000795f70?, 0x2?, 0x0?, 0x0?, 0x14000795f24?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000795dc0 sp=0x14000795da0 pc=0x10f85c618
runtime.selectgo(0x14000795f70, 0x14000795f20, 0x0?, 0x0, 0x0?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x14000795ed0 sp=0x14000795dc0 pc=0x10f86d798
google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run(0x14000897670, {0x110b8f6c0, 0x14000716140})
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:76 +0xc8 fp=0x14000795fa0 sp=0x14000795ed0 pc=0x10fb78458
google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer.func1()
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:52 +0x30 fp=0x14000795fd0 sp=0x14000795fa0 pc=0x10fb782f0
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000795fd0 sp=0x14000795fd0 pc=0x10f890b24
created by google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer in goroutine 17
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:52 +0x134

goroutine 71 [select]:
runtime.gopark(0x140005c1f70?, 0x2?, 0x0?, 0xe3?, 0x140005c1f24?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000194dc0 sp=0x14000194da0 pc=0x10f85c618
runtime.selectgo(0x14000194f70, 0x140005c1f20, 0x0?, 0x0, 0x0?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x14000194ed0 sp=0x14000194dc0 pc=0x10f86d798
google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run(0x140008976a0, {0x110b8f6c0, 0x14000716190})
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:76 +0xc8 fp=0x14000194fa0 sp=0x14000194ed0 pc=0x10fb78458
google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer.func1()
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:52 +0x30 fp=0x14000194fd0 sp=0x14000194fa0 pc=0x10fb782f0
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000194fd0 sp=0x14000194fd0 pc=0x10f890b24
created by google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer in goroutine 17
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:52 +0x134

goroutine 72 [select]:
runtime.gopark(0x14000599f70?, 0x2?, 0x2?, 0x0?, 0x14000599f24?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x1400007bdc0 sp=0x1400007bda0 pc=0x10f85c618
runtime.selectgo(0x1400007bf70, 0x14000599f20, 0x0?, 0x0, 0x0?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x1400007bed0 sp=0x1400007bdc0 pc=0x10f86d798
google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run(0x140008976d0, {0x110b8f6c0, 0x140007161e0})
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:76 +0xc8 fp=0x1400007bfa0 sp=0x1400007bed0 pc=0x10fb78458
google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer.func1()
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:52 +0x30 fp=0x1400007bfd0 sp=0x1400007bfa0 pc=0x10fb782f0
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x1400007bfd0 sp=0x1400007bfd0 pc=0x10f890b24
created by google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer in goroutine 17
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:52 +0x134

goroutine 42 [select]:
runtime.gopark(0x14000915bc8?, 0x2?, 0x1?, 0x0?, 0x14000915bc4?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000915a70 sp=0x14000915a50 pc=0x10f85c618
runtime.selectgo(0x14000915bc8, 0x14000915bc0, 0x14000915bb8?, 0x0, 0x14000915b80?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x14000915b80 sp=0x14000915a70 pc=0x10f86d798
google.golang.org/grpc/internal/transport.(*Stream).waitOnHeader(0x140009b65a0)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/transport.go:330 +0x6c fp=0x14000915bf0 sp=0x14000915b80 pc=0x10fc567bc
google.golang.org/grpc/internal/transport.(*Stream).RecvCompress(...)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/transport.go:345
google.golang.org/grpc.(*csAttempt).recvMsg(0x14000822b60, {0x110ac65a0?, 0x14000726780}, 0x10f82ec58?)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:1071 +0x7c fp=0x14000915d20 sp=0x14000915bf0 pc=0x10fcc48dc
google.golang.org/grpc.(*clientStream).RecvMsg.func1(0x1400081c7e0?)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:928 +0x28 fp=0x14000915d50 sp=0x14000915d20 pc=0x10fcc3b58
google.golang.org/grpc.(*clientStream).withRetry(0x1400017ed80, 0x14000915e58, 0x14000915e48)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:761 +0x4e8 fp=0x14000915dd0 sp=0x14000915d50 pc=0x10fcc2db8
google.golang.org/grpc.(*clientStream).RecvMsg(0x1400017ed80, {0x110ac65a0?, 0x14000726780?})
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:927 +0xc0 fp=0x14000915ea0 sp=0x14000915dd0 pc=0x10fcc39e0
github.com/hashicorp/go-plugin/internal/plugin.(*gRPCBrokerStartStreamClient).Recv(0x14000897710)
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/internal/plugin/grpc_broker_grpc.pb.go:68 +0x58 fp=0x14000915ed0 sp=0x14000915ea0 pc=0x10fccc258
github.com/hashicorp/go-plugin.(*gRPCBrokerClientImpl).StartStream(0x140000900c0)
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_broker.go:201 +0x1a8 fp=0x14000915fb0 sp=0x14000915ed0 pc=0x10fd0d228
github.com/hashicorp/go-plugin.newGRPCClient.func2()
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_client.go:73 +0x28 fp=0x14000915fd0 sp=0x14000915fb0 pc=0x10fd10d58
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000915fd0 sp=0x14000915fd0 pc=0x10f890b24
created by github.com/hashicorp/go-plugin.newGRPCClient in goroutine 17
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_client.go:73 +0x3a8

goroutine 25 [IO wait]:
runtime.gopark(0xffffffffffffffff?, 0xffffffffffffffff?, 0x23?, 0x0?, 0x10f8a7720?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000919a70 sp=0x14000919a50 pc=0x10f85c618
runtime.netpollblock(0x0?, 0x0?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/netpoll.go:564 +0x158 fp=0x14000919ab0 sp=0x14000919a70 pc=0x10f855ce8
internal/poll.runtime_pollWait(0x106794720, 0x72)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/netpoll.go:343 +0xa0 fp=0x14000919ae0 sp=0x14000919ab0 pc=0x10f88a480
internal/poll.(*pollDesc).wait(0x140008be080?, 0x1400091e000?, 0x0)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/internal/poll/fd_poll_runtime.go:84 +0x28 fp=0x14000919b10 sp=0x14000919ae0 pc=0x10f8fb428
internal/poll.(*pollDesc).waitRead(...)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).Read(0x140008be080, {0x1400091e000, 0x8000, 0x8000})
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/internal/poll/fd_unix.go:164 +0x200 fp=0x14000919bb0 sp=0x14000919b10 pc=0x10f8fc770
net.(*netFD).Read(0x140008be080, {0x1400091e000?, 0x0?, 0x800010601?})
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/net/fd_posix.go:55 +0x28 fp=0x14000919c00 sp=0x14000919bb0 pc=0x10fa14348
net.(*conn).Read(0x14000894000, {0x1400091e000?, 0x1030daca8?, 0x110b8b928?})
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/net/net.go:179 +0x34 fp=0x14000919c50 sp=0x14000919c00 pc=0x10fa239a4
net.(*UnixConn).Read(0x14000919cf8?, {0x1400091e000?, 0x14000919ca8?, 0x10f87a4dc?})
	<autogenerated>:1 +0x2c fp=0x14000919c80 sp=0x14000919c50 pc=0x10fa3545c
bufio.(*Reader).Read(0x1400091c000, {0x1400092e040, 0x9, 0x10f8ed194?})
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/bufio/bufio.go:244 +0x1b4 fp=0x14000919cc0 sp=0x14000919c80 pc=0x10f97e484
io.ReadAtLeast({0x110b80d80, 0x1400091c000}, {0x1400092e040, 0x9, 0x9}, 0x9)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/io/io.go:335 +0xa0 fp=0x14000919d10 sp=0x14000919cc0 pc=0x10f8df320
io.ReadFull(...)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/io/io.go:354
golang.org/x/net/http2.readFrameHeader({0x1400092e040, 0x9, 0x2b76c53?}, {0x110b80d80?, 0x1400091c000?})
	/Users/runner/go/pkg/mod/golang.org/x/[email protected]/http2/frame.go:237 +0x58 fp=0x14000919d60 sp=0x14000919d10 pc=0x10fc12f18
golang.org/x/net/http2.(*Framer).ReadFrame(0x1400092e000)
	/Users/runner/go/pkg/mod/golang.org/x/[email protected]/http2/frame.go:498 +0x78 fp=0x14000919e10 sp=0x14000919d60 pc=0x10fc13608
google.golang.org/grpc/internal/transport.(*http2Client).reader(0x14000998480, 0x0?)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/http2_client.go:1602 +0x1b8 fp=0x14000919fb0 sp=0x14000919e10 pc=0x10fc48ce8
google.golang.org/grpc/internal/transport.newHTTP2Client.func11()
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/http2_client.go:409 +0x2c fp=0x14000919fd0 sp=0x14000919fb0 pc=0x10fc3fc4c
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000919fd0 sp=0x14000919fd0 pc=0x10f890b24
created by google.golang.org/grpc/internal/transport.newHTTP2Client in goroutine 40
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/http2_client.go:409 +0x170c

goroutine 26 [select]:
runtime.gopark(0x14000939ee8?, 0x2?, 0x0?, 0x60?, 0x14000939eb4?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x140009d7d60 sp=0x140009d7d40 pc=0x10f85c618
runtime.selectgo(0x140009d7ee8, 0x14000939eb0, 0x14000939ec8?, 0x0, 0x7070e0900000005?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x140009d7e70 sp=0x140009d7d60 pc=0x10f86d798
google.golang.org/grpc/internal/transport.(*controlBuffer).get(0x140008f6190, 0x1)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/controlbuf.go:418 +0x14c fp=0x140009d7f10 sp=0x140009d7e70 pc=0x10fc36a1c
google.golang.org/grpc/internal/transport.(*loopyWriter).run(0x140000f20e0)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/controlbuf.go:551 +0x7c fp=0x140009d7f70 sp=0x140009d7f10 pc=0x10fc3725c
google.golang.org/grpc/internal/transport.newHTTP2Client.func6()
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/http2_client.go:463 +0x70 fp=0x140009d7fd0 sp=0x140009d7f70 pc=0x10fc3fb10
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x140009d7fd0 sp=0x140009d7fd0 pc=0x10f890b24
created by google.golang.org/grpc/internal/transport.newHTTP2Client in goroutine 40
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/http2_client.go:461 +0x1b60

goroutine 73 [select]:
runtime.gopark(0x1400019b7a8?, 0x2?, 0x0?, 0x0?, 0x1400019b78c?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x1400019b630 sp=0x1400019b610 pc=0x10f85c618
runtime.selectgo(0x1400019b7a8, 0x1400019b788, 0x0?, 0x0, 0x0?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x1400019b740 sp=0x1400019b630 pc=0x10f86d798
google.golang.org/grpc.newClientStreamWithParams.func4()
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:392 +0x8c fp=0x1400019b7d0 sp=0x1400019b740 pc=0x10fcc108c
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x1400019b7d0 sp=0x1400019b7d0 pc=0x10f890b24
created by google.golang.org/grpc.newClientStreamWithParams in goroutine 42
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:391 +0xbd0

goroutine 74 [select]:
runtime.gopark(0x1400019bf98?, 0x3?, 0x0?, 0x0?, 0x1400019bf5a?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x1400019be00 sp=0x1400019bde0 pc=0x10f85c618
runtime.selectgo(0x1400019bf98, 0x1400019bf54, 0x0?, 0x0, 0x0?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x1400019bf10 sp=0x1400019be00 pc=0x10f86d798
github.com/hashicorp/go-plugin.(*gRPCBrokerClientImpl).StartStream.func1()
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_broker.go:188 +0xc4 fp=0x1400019bfd0 sp=0x1400019bf10 pc=0x10fd0d434
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x1400019bfd0 sp=0x1400019bfd0 pc=0x10f890b24
created by github.com/hashicorp/go-plugin.(*gRPCBrokerClientImpl).StartStream in goroutine 42
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_broker.go:186 +0x150

goroutine 45 [chan receive]:
runtime.gopark(0x14000046500?, 0x140008f6288?, 0x50?, 0x0?, 0x2457ad9b9be1?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x140007955d0 sp=0x140007955b0 pc=0x10f85c618
runtime.chanrecv(0x1400091c300, 0x140007956d8, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/chan.go:583 +0x414 fp=0x14000795650 sp=0x140007955d0 pc=0x10f8283d4
runtime.chanrecv2(0x3b9aca00?, 0x10fd0d0c4?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/chan.go:447 +0x14 fp=0x14000795680 sp=0x14000795650 pc=0x10f827fa4
github.com/hashicorp/go-plugin/internal/cmdrunner.pidWait(0x0?)
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/internal/cmdrunner/process.go:18 +0x78 fp=0x14000795700 sp=0x14000795680 pc=0x10fac3488
github.com/hashicorp/go-plugin/internal/cmdrunner.(*CmdAttachedRunner).Wait(0x0?, {0x0?, 0x0?})
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/internal/cmdrunner/cmd_reattach.go:54 +0x20 fp=0x14000795720 sp=0x14000795700 pc=0x10fac24c0
github.com/hashicorp/go-plugin.(*Client).reattach.func1({0x110b91160?, 0x140001356f8?})
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/client.go:987 +0x94 fp=0x140007957b0 sp=0x14000795720 pc=0x10fd0b894
github.com/hashicorp/go-plugin.(*Client).reattach.func3()
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/client.go:996 +0x38 fp=0x140007957d0 sp=0x140007957b0 pc=0x10fd0b7c8
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x140007957d0 sp=0x140007957d0 pc=0x10f890b24
created by github.com/hashicorp/go-plugin.(*Client).reattach in goroutine 17
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/client.go:980 +0x178

goroutine 46 [select]:
runtime.gopark(0x14000794f70?, 0x2?, 0x0?, 0x0?, 0x14000794f24?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000794dc0 sp=0x14000794da0 pc=0x10f85c618
runtime.selectgo(0x14000794f70, 0x14000794f20, 0x110b80b60?, 0x0, 0x110b80280?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x14000794ed0 sp=0x14000794dc0 pc=0x10f86d798
google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run(0x14000858920, {0x110b8f6c0, 0x14000864500})
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:76 +0xc8 fp=0x14000794fa0 sp=0x14000794ed0 pc=0x10fb78458
google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer.func1()
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:52 +0x30 fp=0x14000794fd0 sp=0x14000794fa0 pc=0x10fb782f0
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000794fd0 sp=0x14000794fd0 pc=0x10f890b24
created by google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer in goroutine 17
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:52 +0x134

goroutine 47 [select]:
runtime.gopark(0x1400059df70?, 0x2?, 0x0?, 0xcf?, 0x1400059df24?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000074dc0 sp=0x14000074da0 pc=0x10f85c618
runtime.selectgo(0x14000074f70, 0x1400059df20, 0x110b80b60?, 0x0, 0x110b80280?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x14000074ed0 sp=0x14000074dc0 pc=0x10f86d798
google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run(0x14000858950, {0x110b8f6c0, 0x14000864550})
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:76 +0xc8 fp=0x14000074fa0 sp=0x14000074ed0 pc=0x10fb78458
google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer.func1()
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:52 +0x30 fp=0x14000074fd0 sp=0x14000074fa0 pc=0x10fb782f0
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000074fd0 sp=0x14000074fd0 pc=0x10f890b24
created by google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer in goroutine 17
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:52 +0x134

goroutine 48 [select]:
runtime.gopark(0x1400059ff70?, 0x2?, 0x2?, 0x0?, 0x1400059ff24?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000078dc0 sp=0x14000078da0 pc=0x10f85c618
runtime.selectgo(0x14000078f70, 0x1400059ff20, 0x0?, 0x0, 0x0?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x14000078ed0 sp=0x14000078dc0 pc=0x10f86d798
google.golang.org/grpc/internal/grpcsync.(*CallbackSerializer).run(0x14000858980, {0x110b8f6c0, 0x140008645a0})
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:76 +0xc8 fp=0x14000078fa0 sp=0x14000078ed0 pc=0x10fb78458
google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer.func1()
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:52 +0x30 fp=0x14000078fd0 sp=0x14000078fa0 pc=0x10fb782f0
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000078fd0 sp=0x14000078fd0 pc=0x10f890b24
created by google.golang.org/grpc/internal/grpcsync.NewCallbackSerializer in goroutine 17
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/grpcsync/callback_serializer.go:52 +0x134

goroutine 13 [select]:
runtime.gopark(0x1400019cf38?, 0x2?, 0x0?, 0x0?, 0x1400019cf2c?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x1400019cde0 sp=0x1400019cdc0 pc=0x10f85c618
runtime.selectgo(0x1400019cf38, 0x1400019cf28, 0x100000000000000?, 0x0, 0x11091c040?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x1400019cef0 sp=0x1400019cde0 pc=0x10f86d798
github.com/hashicorp/go-plugin.(*gRPCBrokerClientImpl).Recv(0x14000135728?)
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_broker.go:238 +0x58 fp=0x1400019cf60 sp=0x1400019cef0 pc=0x10fd0d758
github.com/hashicorp/go-plugin.(*GRPCBroker).Run(0x140006978c0)
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_broker.go:582 +0x50 fp=0x1400019cfb0 sp=0x1400019cf60 pc=0x10fd0f3d0
github.com/hashicorp/go-plugin.newGRPCClient.func1()
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_client.go:72 +0x28 fp=0x1400019cfd0 sp=0x1400019cfb0 pc=0x10fd10db8
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x1400019cfd0 sp=0x1400019cfd0 pc=0x10f890b24
created by github.com/hashicorp/go-plugin.newGRPCClient in goroutine 17
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_client.go:72 +0x368

goroutine 14 [select]:
runtime.gopark(0x140009d9bc8?, 0x2?, 0x8c?, 0x9e?, 0x140009d9bc4?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x140009d9a70 sp=0x140009d9a50 pc=0x10f85c618
runtime.selectgo(0x140009d9bc8, 0x140009d9bc0, 0x140009d9bb8?, 0x0, 0x140009d9b80?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x140009d9b80 sp=0x140009d9a70 pc=0x10f86d798
google.golang.org/grpc/internal/transport.(*Stream).waitOnHeader(0x140009e4000)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/transport.go:330 +0x6c fp=0x140009d9bf0 sp=0x140009d9b80 pc=0x10fc567bc
google.golang.org/grpc/internal/transport.(*Stream).RecvCompress(...)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/transport.go:345
google.golang.org/grpc.(*csAttempt).recvMsg(0x14000823450, {0x110ac65a0?, 0x140009de060}, 0x10f82ec58?)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:1071 +0x7c fp=0x140009d9d20 sp=0x140009d9bf0 pc=0x10fcc48dc
google.golang.org/grpc.(*clientStream).RecvMsg.func1(0x14000849c50?)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:928 +0x28 fp=0x140009d9d50 sp=0x140009d9d20 pc=0x10fcc3b58
google.golang.org/grpc.(*clientStream).withRetry(0x14000000d80, 0x140009d9e58, 0x140009d9e48)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:761 +0x4e8 fp=0x140009d9dd0 sp=0x140009d9d50 pc=0x10fcc2db8
google.golang.org/grpc.(*clientStream).RecvMsg(0x14000000d80, {0x110ac65a0?, 0x140009de060?})
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:927 +0xc0 fp=0x140009d9ea0 sp=0x140009d9dd0 pc=0x10fcc39e0
github.com/hashicorp/go-plugin/internal/plugin.(*gRPCBrokerStartStreamClient).Recv(0x140009e6030)
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/internal/plugin/grpc_broker_grpc.pb.go:68 +0x58 fp=0x140009d9ed0 sp=0x140009d9ea0 pc=0x10fccc258
github.com/hashicorp/go-plugin.(*gRPCBrokerClientImpl).StartStream(0x140006bc140)
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_broker.go:201 +0x1a8 fp=0x140009d9fb0 sp=0x140009d9ed0 pc=0x10fd0d228
github.com/hashicorp/go-plugin.newGRPCClient.func2()
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_client.go:73 +0x28 fp=0x140009d9fd0 sp=0x140009d9fb0 pc=0x10fd10d58
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x140009d9fd0 sp=0x140009d9fd0 pc=0x10f890b24
created by github.com/hashicorp/go-plugin.newGRPCClient in goroutine 17
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_client.go:73 +0x3a8

goroutine 50 [select]:
runtime.gopark(0x14000079bc8?, 0x2?, 0x28?, 0x9b?, 0x14000079bc4?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000079a70 sp=0x14000079a50 pc=0x10f85c618
runtime.selectgo(0x14000079bc8, 0x14000079bc0, 0x110918340?, 0x0, 0x0?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x14000079b80 sp=0x14000079a70 pc=0x10f86d798
google.golang.org/grpc/internal/transport.(*Stream).waitOnHeader(0x14000000fc0)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/transport.go:330 +0x6c fp=0x14000079bf0 sp=0x14000079b80 pc=0x10fc567bc
google.golang.org/grpc/internal/transport.(*Stream).RecvCompress(...)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/transport.go:345
google.golang.org/grpc.(*csAttempt).recvMsg(0x140005c7ee0, {0x110a8fe00?, 0x14000716550}, 0x10f82ec58?)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:1071 +0x7c fp=0x14000079d20 sp=0x14000079bf0 pc=0x10fcc48dc
google.golang.org/grpc.(*clientStream).RecvMsg.func1(0x1?)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:928 +0x28 fp=0x14000079d50 sp=0x14000079d20 pc=0x10fcc3b58
google.golang.org/grpc.(*clientStream).withRetry(0x1400052b8c0, 0x14000079e58, 0x14000079e48)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:777 +0x188 fp=0x14000079dd0 sp=0x14000079d50 pc=0x10fcc2a58
google.golang.org/grpc.(*clientStream).RecvMsg(0x1400052b8c0, {0x110a8fe00?, 0x14000716550?})
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:927 +0xc0 fp=0x14000079ea0 sp=0x14000079dd0 pc=0x10fcc39e0
github.com/hashicorp/go-plugin/internal/plugin.(*gRPCStdioStreamStdioClient).Recv(0x14000858b00)
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/internal/plugin/grpc_stdio_grpc.pb.go:75 +0x58 fp=0x14000079ed0 sp=0x14000079ea0 pc=0x10fccd418
github.com/hashicorp/go-plugin.(*grpcStdioClient).Run(0x14000898100, {0x110b803a0, 0x1115c6da0}, {0x110b803a0, 0x1115c6da0})
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_stdio.go:135 +0xc8 fp=0x14000079f90 sp=0x14000079ed0 pc=0x10fd11328
github.com/hashicorp/go-plugin.newGRPCClient.func3()
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_client.go:80 +0x38 fp=0x14000079fd0 sp=0x14000079f90 pc=0x10fd10cf8
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000079fd0 sp=0x14000079fd0 pc=0x10f890b24
created by github.com/hashicorp/go-plugin.newGRPCClient in goroutine 17
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_client.go:80 +0x4ac

goroutine 76 [IO wait]:
runtime.gopark(0xffffffffffffffff?, 0xffffffffffffffff?, 0x23?, 0x0?, 0x10f8a7720?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x14000075a70 sp=0x14000075a50 pc=0x10f85c618
runtime.netpollblock(0x0?, 0x0?, 0x0?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/netpoll.go:564 +0x158 fp=0x14000075ab0 sp=0x14000075a70 pc=0x10f855ce8
internal/poll.runtime_pollWait(0x106794628, 0x72)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/netpoll.go:343 +0xa0 fp=0x14000075ae0 sp=0x14000075ab0 pc=0x10f88a480
internal/poll.(*pollDesc).wait(0x14000230900?, 0x1400079c000?, 0x0)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/internal/poll/fd_poll_runtime.go:84 +0x28 fp=0x14000075b10 sp=0x14000075ae0 pc=0x10f8fb428
internal/poll.(*pollDesc).waitRead(...)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/internal/poll/fd_poll_runtime.go:89
internal/poll.(*FD).Read(0x14000230900, {0x1400079c000, 0x8000, 0x8000})
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/internal/poll/fd_unix.go:164 +0x200 fp=0x14000075bb0 sp=0x14000075b10 pc=0x10f8fc770
net.(*netFD).Read(0x14000230900, {0x1400079c000?, 0x0?, 0x800010601?})
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/net/fd_posix.go:55 +0x28 fp=0x14000075c00 sp=0x14000075bb0 pc=0x10fa14348
net.(*conn).Read(0x1400012c848, {0x1400079c000?, 0x106789fe8?, 0x110b8b928?})
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/net/net.go:179 +0x34 fp=0x14000075c50 sp=0x14000075c00 pc=0x10fa239a4
net.(*UnixConn).Read(0x14000075cf8?, {0x1400079c000?, 0x14000075ca8?, 0x10f87a4dc?})
	<autogenerated>:1 +0x2c fp=0x14000075c80 sp=0x14000075c50 pc=0x10fa3545c
bufio.(*Reader).Read(0x140007269c0, {0x14000227380, 0x9, 0x10f8ed194?})
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/bufio/bufio.go:244 +0x1b4 fp=0x14000075cc0 sp=0x14000075c80 pc=0x10f97e484
io.ReadAtLeast({0x110b80d80, 0x140007269c0}, {0x14000227380, 0x9, 0x9}, 0x9)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/io/io.go:335 +0xa0 fp=0x14000075d10 sp=0x14000075cc0 pc=0x10f8df320
io.ReadFull(...)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/io/io.go:354
golang.org/x/net/http2.readFrameHeader({0x14000227380, 0x9, 0x362931a?}, {0x110b80d80?, 0x140007269c0?})
	/Users/runner/go/pkg/mod/golang.org/x/[email protected]/http2/frame.go:237 +0x58 fp=0x14000075d60 sp=0x14000075d10 pc=0x10fc12f18
golang.org/x/net/http2.(*Framer).ReadFrame(0x14000227340)
	/Users/runner/go/pkg/mod/golang.org/x/[email protected]/http2/frame.go:498 +0x78 fp=0x14000075e10 sp=0x14000075d60 pc=0x10fc13608
google.golang.org/grpc/internal/transport.(*http2Client).reader(0x14000596480, 0x0?)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/http2_client.go:1602 +0x1b8 fp=0x14000075fb0 sp=0x14000075e10 pc=0x10fc48ce8
google.golang.org/grpc/internal/transport.newHTTP2Client.func11()
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/http2_client.go:409 +0x2c fp=0x14000075fd0 sp=0x14000075fb0 pc=0x10fc3fc4c
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x14000075fd0 sp=0x14000075fd0 pc=0x10f890b24
created by google.golang.org/grpc/internal/transport.newHTTP2Client in goroutine 12
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/http2_client.go:409 +0x170c

goroutine 77 [select]:
runtime.gopark(0x140007b5ee8?, 0x2?, 0x0?, 0x40?, 0x140007b5eb4?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x140005c5d60 sp=0x140005c5d40 pc=0x10f85c618
runtime.selectgo(0x140005c5ee8, 0x140007b5eb0, 0x140007b5ec8?, 0x0, 0x7070e0900000007?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x140005c5e70 sp=0x140005c5d60 pc=0x10f86d798
google.golang.org/grpc/internal/transport.(*controlBuffer).get(0x14000716460, 0x1)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/controlbuf.go:418 +0x14c fp=0x140005c5f10 sp=0x140005c5e70 pc=0x10fc36a1c
google.golang.org/grpc/internal/transport.(*loopyWriter).run(0x140002d6070)
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/controlbuf.go:551 +0x7c fp=0x140005c5f70 sp=0x140005c5f10 pc=0x10fc3725c
google.golang.org/grpc/internal/transport.newHTTP2Client.func6()
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/http2_client.go:463 +0x70 fp=0x140005c5fd0 sp=0x140005c5f70 pc=0x10fc3fb10
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x140005c5fd0 sp=0x140005c5fd0 pc=0x10f890b24
created by google.golang.org/grpc/internal/transport.newHTTP2Client in goroutine 12
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/internal/transport/http2_client.go:461 +0x1b60

goroutine 83 [select]:
runtime.gopark(0x140009f6fa8?, 0x2?, 0x0?, 0x0?, 0x140009f6f8c?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x140009f6e30 sp=0x140009f6e10 pc=0x10f85c618
runtime.selectgo(0x140009f6fa8, 0x140009f6f88, 0x0?, 0x0, 0x0?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x140009f6f40 sp=0x140009f6e30 pc=0x10f86d798
google.golang.org/grpc.newClientStreamWithParams.func4()
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:392 +0x8c fp=0x140009f6fd0 sp=0x140009f6f40 pc=0x10fcc108c
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x140009f6fd0 sp=0x140009f6fd0 pc=0x10f890b24
created by google.golang.org/grpc.newClientStreamWithParams in goroutine 14
	/Users/runner/go/pkg/mod/google.golang.org/[email protected]/stream.go:391 +0xbd0

goroutine 84 [select]:
runtime.gopark(0x140009f7798?, 0x3?, 0x0?, 0x0?, 0x140009f775a?)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/proc.go:398 +0xc8 fp=0x140009f7600 sp=0x140009f75e0 pc=0x10f85c618
runtime.selectgo(0x140009f7798, 0x140009f7754, 0x0?, 0x0, 0x0?, 0x1)
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/select.go:327 +0x608 fp=0x140009f7710 sp=0x140009f7600 pc=0x10f86d798
github.com/hashicorp/go-plugin.(*gRPCBrokerClientImpl).StartStream.func1()
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_broker.go:188 +0xc4 fp=0x140009f77d0 sp=0x140009f7710 pc=0x10fd0d434
runtime.goexit()
	/Users/runner/hostedtoolcache/go/1.21.9/arm64/src/runtime/asm_arm64.s:1197 +0x4 fp=0x140009f77d0 sp=0x140009f77d0 pc=0x10f890b24
created by github.com/hashicorp/go-plugin.(*gRPCBrokerClientImpl).StartStream in goroutine 14
	/Users/runner/go/pkg/mod/github.com/hashicorp/[email protected]/grpc_broker.go:186 +0x150

r0      0x158707ac0
r1      0x1598143ac
r2      0x0
r3      0x158707ac4
r4      0x480
r5      0x14000002710
r6      0x0
r7      0x110b947a0
r8      0x0
r9      0x1
r10     0x3a
r11     0x70
r12     0x10
r13     0xffff8016
r14     0x12c
r15     0xffff7dff
r16     0x185a03650
r17     0x1e4b747c0
r18     0x0
r19     0x159814338
r20     0x0
r21     0x15982bd18
r22     0x0
r23     0x159831378
r24     0x1
r25     0x15007a000
r26     0x14000947b68
r27     0x838
r28     0x140000024e0
r29     0x16dbe60b0
lr      0x357380010f81f2f8
sp      0x16dbe6080
pc      0x10f81f310
fault   0x0

-----

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants