github-vet / github-vet/rangeloop-pointer-findings

hello-mr-code/terraform-oci: oci/export_compartment.go; 44 LoC

Open
#7,545 0 comments 0 reactions 0 assignees View on GitHub
fresh small
Dominant language
No language data
Stars
0
Forks
0
PR merge metrics
PR metrics pending

Description

Found a possible issue in [hello-mr-code/terraform-oci](https://www.github.com/hello-mr-code/terraform-oci) at [oci/export_compartment.go](https://github.com/hello-mr-code/terraform-oci/blob/2f6aa93ef8643328af454512a5fe78ab006697f0/oci/export_compartment.go#L626-L669)

Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.

> function call which takes a reference to childType at line 628 may start a goroutine

[Click here to see the code in its original context.](https://github.com/hello-mr-code/terraform-oci/blob/2f6aa93ef8643328af454512a5fe78ab006697f0/oci/export_compartment.go#L626-L669)

Click here to show the 44 line(s) of Go which triggered the analyzer.

```go
for _, childType := range childResourceTypes {
func() {
defer handlePanicFindResources(&childType, &err)

findResourceFn := findResourcesGeneric
if childType.findResourcesOverrideFn != nil {
findResourceFn = childType.findResourcesOverrideFn
}
results, err := findResourceFn(ctx, &childType, root, &resourceGraph)
if err != nil {
// add error to the errorList and continue discovering rest of the resources
ctx.errorList = append(ctx.errorList, &ResourceDiscoveryError{childType.resourceClass, root.terraformName, err, &resourceGraph})
return
}

if childType.processDiscoveredResourcesFn != nil {
results, err = childType.processDiscoveredResourcesFn(ctx.clients, results)
if err != nil {
// add error to the errorList and continue discovering rest of the resources
ctx.errorList = append(ctx.errorList, &ResourceDiscoveryError{childType.resourceClass, root.terraformName, err, &resourceGraph})
return
}
}
foundResources = append(foundResources, results...)

for _, resource := range results {
//referenceMap[resource.id] = resource.getHclReferenceIdString()
if ctx.expectedResourceIds != nil && len(ctx.expectedResourceIds) > 0 {
if _, shouldExport := ctx.expectedResourceIds[resource.id]; shouldExport {
resource.omitFromExport = false
ctx.expectedResourceIds[resource.id] = true
} else {
resource.omitFromExport = !childType.alwaysExportable
}
}

subResources, err := findResources(ctx, resource, resourceGraph)
if err != nil {
continue
}
foundResources = append(foundResources, subResources...)
}
}()
}

```

Click here to show extra information the analyzer produced.

```
The following paths through the callgraph could lead to a goroutine:
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (run, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (NewAddress, 1) -> (handleResolvedAddrs, 2) -> (newCCBalancerWrapper, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (run, 0) -> (Gosched, 0) -> (onEachWrite, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (ioloop, 0) -> (Get2, 0) -> (IsNumber, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1) -> (ioloop, 0) -> (Get2, 0) -> (IsNumber, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (ProvisionResource, 2) -> (Apply, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Close, 0) -> (handleErr, 1) -> (NewEx, 1) -> (Readline, 0) -> (roundTrip, 1) -> (handleReadLoopResponse, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (NewClientConn, 3) -> (newMux, 1) -> (loop, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (NewAddress, 1) -> (handleResolvedAddrs, 2) -> (newCCBalancerWrapper, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (newHealthBalancer, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (blockchainPlatformWaitForWorkRequest, 6) -> (getErrorFromBlockchainPlatformWorkRequest, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (ProvisionResource, 1) -> (ApplyFn, 2) -> (Apply, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (NewAddress, 1) -> (handleResolvedAddrs, 2) -> (newCCBalancerWrapper, 3) -> (Build, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (NewSection, 1) -> (newWatchClient, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (RunWithString, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (executeCredentialProcess, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (ioloop, 0) -> (Get2, 0) -> (IsNumber, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (createMultiPartObject, 0) -> (MultiPartUpload, 1) -> (singlePartUpload, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (NewSection, 1) -> (processSettings, 1) -> (WriteSettingsAck, 0) -> (startFrameWrite, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Close, 0) -> (handleErr, 1) -> (NewEx, 1) -> (Readline, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (Scan, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (Update, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (connect, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (CombineBodyMedia, 4) -> (newMultipartReader, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (Connect, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (Retry, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (Dial, 3) -> (NewClient, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (NewSection, 1) -> (processHeaders, 1) -> (handleResponse, 2) -> (awaitRequestCancel, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Close, 0) -> (handleErr, 1) -> (NewEx, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (get, 0) -> (new, 1) -> (NewCipher, 1) -> (keySchedule, 1) -> (restoreContent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (apiWaitForValidation, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (httpRedirectWaitForWorkRequest, 6) -> (getErrorFromHttpRedirectWorkRequest, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (NewEncoder, 1) -> (newEncoderWithWriter, 1) -> (yaml_emitter_set_unicode, 2) -> (evictOldest, 1) -> (handleResolvedAddrs, 2) -> (newCCBalancerWrapper, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Client, 0) -> (New, 1) -> (ToLower, 1) -> (NewProjectsServiceAccountService, 1) -> (run, 0) -> (Gosched, 0) -> (onEachWrite, 0) -> (onWrite, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (Do, 8) -> (doRequest, 7) -> (handleResponse, 2) -> (awaitRequestCancel, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Close, 0) -> (handleErr, 1) -> (NewEx, 1) -> (Readline, 0) -> (RoundTripOpt, 2) -> (shouldRetryRequest, 3) -> (canRetryError, 1) -> (getStartDialLocked, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Format, 1) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (closeSubstream, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (NewSection, 1) -> (connect, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (Build, 3) -> (customAuthorityResolver, 1) -> (NewServiceConfig, 1) -> (handleServiceConfig, 1) -> (parseServiceConfig, 1) -> (generatePath, 0) -> (HasFired, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Close, 0) -> (handleErr, 1) -> (NewEx, 1) -> (Readline, 0) -> (NewOperation, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (cleanupContent, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (run, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (append, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (deploymentWaitForWorkRequest, 6) -> (getErrorFromGatewayWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (dataSafePrivateEndpointWaitForWorkRequest, 6) -> (getErrorFromDataSafePrivateEndpointWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Format, 1) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (processHeaders, 1) -> (handleResponse, 2) -> (awaitRequestCancel, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (watcher, 0) -> (NewServiceConfig, 1) -> (handleServiceConfig, 1) -> (parseServiceConfig, 1) -> (generatePath, 0) -> (HasFired, 0) -> (healthCheckFunc, 4) -> (newHTTP2Client, 7)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (newSession, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (Build, 3) -> (customAuthorityResolver, 1) -> (NewServiceConfig, 1) -> (handleServiceConfig, 1) -> (parseServiceConfig, 1) -> (generatePath, 0) -> (HasFired, 0) -> (healthCheckFunc, 4) -> (newHTTP2Client, 7) -> (connectionErrorf, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (ForwardToAgent, 1) -> (ForwardToAgent, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (waasPolicyWaitForWorkRequest, 6) -> (getErrorFromWaasPolicyWorkRequest, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1) -> (CombineBodyMedia, 4) -> (newMultipartReader, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (NewSection, 1) -> (CombineBodyMedia, 4) -> (newMultipartReader, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Close, 0) -> (handleErr, 1) -> (NewEx, 1) -> (Readline, 0) -> (dial, 1) -> (addConnLocked, 2) -> (newClientConn, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (grpcHealthCheck, 2) -> (Check, 2) -> (addConnLocked, 2) -> (newClientConn, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (append, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (privateEndpointWaitForWorkRequest, 6) -> (getErrorFromPrivateEndpointWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteByte, 1) -> (putEntry, 2) -> (putDelta, 1) -> (winFindWindow, 2) -> (clusterWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteByte, 1) -> (putEntry, 2) -> (putDelta, 1) -> (winFindWindow, 2) -> (createMultiPartObject, 0) -> (MultiPartUpload, 1) -> (singlePartUpload, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (NewClientConn, 3) -> (newMux, 1) -> (loop, 0) -> (dropAll, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (prepareCopyIn, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (UnmarshalJSON, 1) -> (DecodeKey, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (NewSection, 1) -> (newWatchClient, 0) -> (serveWatchClient, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (serveStreams, 1) -> (methodFamily, 1) -> (processStreamingRPC, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (NewMaintenance, 1) -> (RetryMaintenanceClient, 2) -> (NewMaintenanceClient, 1) -> (newClientConn, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (NewSection, 1) -> (closeSubstream, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteString, 1) -> (write, 3) -> (bodyAllowedForStatus, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (NewOperation, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (prepareCopyIn, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (NewOperation, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (esxiHostWaitForWorkRequest, 6) -> (getErrorFromOcvpWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (CombineBodyMedia, 4) -> (newMultipartReader, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (nodePoolWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Format, 1) -> (String, 0) -> (transformValue, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (createMultiPartObject, 0) -> (MultiPartUpload, 1) -> (singlePartUpload, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (RoundTrip, 1) -> (GetContentWasTruncated, 0) -> (handleReadLoopResponse, 1) -> (traceWait100Continue, 1) -> (Wait100Continue, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (Build, 3) -> (customAuthorityResolver, 1) -> (NewServiceConfig, 1) -> (handleServiceConfig, 1) -> (parseServiceConfig, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (clusterWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (connect, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (run, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (get, 0) -> (new, 1) -> (NewCipher, 1) -> (keySchedule, 1) -> (cleanupContent, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (clusterWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (oceInstanceWaitForWorkRequest, 6) -> (getErrorFromOceInstanceWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (Connect, 1) -> (CreateShell, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteByte, 1) -> (putEntry, 2) -> (putDelta, 1) -> (winFindWindow, 2) -> (LoadBalancerWaitForWorkRequest, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (renderSlice, 1) -> (ContainsAny, 2) -> (ParseUint, 3) -> (Section, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (NewSection, 1) -> (dial, 1) -> (addConnLocked, 2) -> (newClientConn, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (NewTerminal, 1) -> (ioloop, 0) -> (Get2, 0) -> (IsNumber, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (NewAddress, 1) -> (handleResolvedAddrs, 2) -> (newCCBalancerWrapper, 3) -> (Build, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (dial, 1) -> (addConnLocked, 2) -> (newClientConn, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (NewEncoder, 1) -> (newEncoderWithWriter, 1) -> (yaml_emitter_set_unicode, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Format, 1) -> (String, 0) -> (transformValue, 1) -> (Section, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Put, 1) -> (Create, 3) -> (HasSuffix, 2) -> (Incomplete, 0) -> (Snapshot, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (Build, 3) -> (customAuthorityResolver, 1) -> (NewServiceConfig, 1) -> (handleServiceConfig, 1) -> (parseServiceConfig, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (Retry, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (ApplyResourceChange, 2) -> (copyTimeoutValues, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Client, 0) -> (New, 1) -> (ToLower, 1) -> (NewProjectsServiceAccountService, 1) -> (connect, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (NewSection, 1) -> (processHeaders, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1) -> (dial, 1) -> (addConnLocked, 2) -> (newClientConn, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Put, 1) -> (Create, 3) -> (HasSuffix, 2) -> (Incomplete, 0) -> (append, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (Start, 2) -> (watchAddrUpdates, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (LazyPrintf, 2) -> (addEvent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Release, 2) -> (put, 4) -> (Create, 4) -> (writeConfigSnapshot, 2) -> (CombineBodyMedia, 4) -> (newMultipartReader, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteString, 1) -> (write, 3) -> (bodyAllowedForStatus, 1) -> (logf, 3) -> (apiWaitForValidation, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Close, 0) -> (handleErr, 1) -> (NewEx, 1) -> (Readline, 0) -> (LazyPrintf, 2) -> (addEvent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (NewSection, 1) -> (ioloop, 0) -> (Get2, 0) -> (IsNumber, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (Connect, 1) -> (CreateShell, 0) -> (NewShell, 1) -> (ServeAgent, 2) -> (processRequestBytes, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (NewCancelableStdin, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (watcher, 0) -> (NewServiceConfig, 1) -> (handleServiceConfig, 1) -> (parseServiceConfig, 1) -> (generatePath, 0) -> (HasFired, 0) -> (healthCheckFunc, 4) -> (newHTTP2Client, 7) -> (ClientHandshake, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (LoadBalancerWaitForWorkRequest, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (NewSection, 1) -> (processWindowUpdate, 1) -> (scheduleFrameWrite, 0) -> (startFrameWrite, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Format, 1) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (processHeaders, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (NewCancelableStdin, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (prepareCopyIn, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1) -> (analyticsInstanceWaitForWorkRequest, 6) -> (getErrorFromAnalyticsInstanceWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (connect, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (clusterWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (apiWaitForValidation, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (run, 0) -> (Gosched, 0) -> (onEachWrite, 0) -> (onWrite, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (NewAddress, 1) -> (handleResolvedAddrs, 2) -> (newCCBalancerWrapper, 3) -> (Build, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Client, 0) -> (New, 1) -> (ToLower, 1) -> (NewProjectsServiceAccountService, 1) -> (dial, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (Retry, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (analyticsInstanceWaitForWorkRequest, 6) -> (getErrorFromAnalyticsInstanceWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (waasPolicyWaitForWorkRequest, 6) -> (getErrorFromWaasPolicyWorkRequest, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1) -> (roundTrip, 1) -> (handleReadLoopResponse, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (dial, 1) -> (addConnLocked, 2) -> (newClientConn, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (connect, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1) -> (Snapshot, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Close, 0) -> (handleErr, 1) -> (NewEx, 1) -> (Readline, 0) -> (CombineBodyMedia, 4) -> (newMultipartReader, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (finish, 1) -> (SetError, 0) -> (addEvent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (Build, 3) -> (customAuthorityResolver, 1) -> (NewServiceConfig, 1) -> (handleServiceConfig, 1) -> (parseServiceConfig, 1) -> (generatePath, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (writeChunk, 1) -> (writeDataFromHandler, 3) -> (writeFrameFromHandler, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Client, 0) -> (New, 1) -> (ToLower, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (NewCancelableStdin, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Error, 0) -> (GetMessage, 0) -> (GRPCStatus, 0) -> (Impl, 2) -> (Retry, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Error, 0) -> (GetMessage, 0) -> (GRPCStatus, 0) -> (Impl, 2) -> (executeCredentialProcess, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (serveStreams, 1) -> (methodFamily, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (CombineBodyMedia, 4) -> (newMultipartReader, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1) -> (apiWaitForWorkRequest, 6) -> (getErrorFromGatewayWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (watcher, 0) -> (NewServiceConfig, 1) -> (handleServiceConfig, 1) -> (parseServiceConfig, 1) -> (generatePath, 0) -> (HasFired, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (ioloop, 0) -> (Get2, 0) -> (IsNumber, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (executeCredentialProcess, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (clusterWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Client, 0) -> (New, 1) -> (ToLower, 1) -> (NewProjectsServiceAccountService, 1) -> (run, 0) -> (Gosched, 0) -> (onEachWrite, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (Build, 3) -> (customAuthorityResolver, 1) -> (NewServiceConfig, 1) -> (handleServiceConfig, 1) -> (parseServiceConfig, 1) -> (generatePath, 0) -> (HasFired, 0) -> (healthCheckFunc, 4) -> (newHTTP2Client, 7)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Client, 0) -> (New, 1) -> (ToLower, 1) -> (NewProjectsServiceAccountService, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (nodePoolWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Format, 1) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (newWatchClient, 0) -> (serveWatchClient, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteByte, 1) -> (putEntry, 2) -> (putDelta, 1) -> (winFindWindow, 2) -> (apiWaitForValidation, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (run, 0) -> (Gosched, 0) -> (onEachWrite, 0) -> (onWrite, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (Scan, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (ProvisionResource, 2) -> (Apply, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Error, 0) -> (GetMessage, 0) -> (GRPCStatus, 0) -> (Impl, 2) -> (waasPolicyWaitForWorkRequest, 6) -> (getErrorFromWaasPolicyWorkRequest, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteString, 1) -> (write, 3) -> (bodyAllowedForStatus, 1) -> (logf, 3) -> (clusterWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (run, 0) -> (Gosched, 0) -> (onEachWrite, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (newHTTP2Transport, 2) -> (Warningln, 2) -> (newHTTP2Server, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (serviceConnectorWaitForWorkRequest, 6) -> (getErrorFromServiceConnectorWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (ProvisionResource, 2) -> (Apply, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteString, 1) -> (write, 3) -> (bodyAllowedForStatus, 1) -> (logf, 3) -> (waasPolicyWaitForWorkRequest, 6) -> (getErrorFromWaasPolicyWorkRequest, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (Build, 3) -> (customAuthorityResolver, 1) -> (NewServiceConfig, 1) -> (handleServiceConfig, 1) -> (parseServiceConfig, 1) -> (generatePath, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (Scan, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (catalogPrivateEndpointWaitForWorkRequest, 6) -> (getErrorFromCatalogWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteString, 1) -> (write, 3) -> (bodyAllowedForStatus, 1) -> (logf, 3) -> (LoadBalancerWaitForWorkRequest, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1) -> (MultiPartUpload, 1) -> (singlePartUpload, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Format, 1) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (processWindowUpdate, 1) -> (scheduleFrameWrite, 0) -> (startFrameWrite, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (LoadBalancerWaitForWorkRequest, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (NewSection, 1) -> (processHeaders, 1) -> (handleResponse, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Client, 0) -> (New, 1) -> (ToLower, 1) -> (NewProjectsServiceAccountService, 1) -> (ioloop, 0) -> (Get2, 0) -> (IsNumber, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Client, 0) -> (New, 1) -> (ToLower, 1) -> (NewProjectsServiceAccountService, 1) -> (dial, 1) -> (addConnLocked, 2) -> (newClientConn, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (run, 0) -> (Gosched, 0) -> (onEachWrite, 0) -> (onWrite, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (RoundTripOpt, 2) -> (vlogf, 2) -> (canRetryError, 1) -> (traceWait100Continue, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (watcher, 0) -> (NewServiceConfig, 1) -> (handleServiceConfig, 1) -> (parseServiceConfig, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (NewOperation, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (watchStop, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (apiWaitForWorkRequest, 6) -> (getErrorFromGatewayWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (nodePoolWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (run, 0) -> (Gosched, 0) -> (onEachWrite, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (RoundTrip, 1) -> (GetContentWasTruncated, 0) -> (handleReadLoopResponse, 1) -> (traceWait100Continue, 1) -> (Wait100Continue, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (flushChunk, 0) -> (cloneState, 1) -> (deepcopy, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (cleanupContent, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Copy, 2) -> (ref, 0) -> (AddInt32, 2) -> (walk, 4) -> (uploadChunks, 4) -> (appendContent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Error, 0) -> (GetMessage, 0) -> (GRPCStatus, 0) -> (Impl, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (LoadBalancerWaitForWorkRequest, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (Dial, 3) -> (NewClient, 3) -> (closeAll, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (uploadContent, 4) -> (uploadChunks, 4) -> (appendContent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (RoundTripOpt, 2) -> (vlogf, 2) -> (canRetryError, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (flushChunk, 0) -> (cloneState, 1) -> (deepcopy, 1) -> (setBytes, 1) -> (append, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (Build, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (NewOperation, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (append, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (executeCredentialProcess, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Put, 1) -> (Create, 3) -> (HasSuffix, 2) -> (Incomplete, 0) -> (roundTrip, 1) -> (handleReadLoopResponse, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (createMultiPartObject, 0) -> (MultiPartUpload, 1) -> (singlePartUpload, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (Do, 8) -> (doRequest, 7) -> (handleResponse, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (restoreContent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (NewAddress, 1) -> (handleResolvedAddrs, 2) -> (newCCBalancerWrapper, 3) -> (Build, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (dial, 1) -> (addConnLocked, 2) -> (newClientConn, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (NewTerminal, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (serveStreams, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (LazyPrintf, 2) -> (addEvent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (RoundTrip, 1) -> (GetContentWasTruncated, 0) -> (FloatValue, 0) -> (traceWait100Continue, 1) -> (Wait100Continue, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Put, 1) -> (Create, 3) -> (HasSuffix, 2) -> (Incomplete, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (RoundTrip, 1) -> (GetContentWasTruncated, 0) -> (handleReadLoopResponse, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (get, 0) -> (new, 1) -> (NewCipher, 1) -> (keySchedule, 1) -> (uploadContent, 4) -> (uploadChunks, 4) -> (appendContent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Put, 1) -> (Create, 3) -> (HasSuffix, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1) -> (prepareCopyIn, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (NewSection, 1) -> (NewOperation, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (createMultiPartObject, 0) -> (MultiPartUpload, 1) -> (singlePartUpload, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (run, 0) -> (Gosched, 0) -> (onEachWrite, 0) -> (onWrite, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteString, 1) -> (write, 3) -> (bodyAllowedForStatus, 1) -> (logf, 3) -> (executeCredentialProcess, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Error, 0) -> (GetMessage, 0) -> (GRPCStatus, 0) -> (Impl, 2) -> (createMultiPartObject, 0) -> (MultiPartUpload, 1) -> (singlePartUpload, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (NewAddress, 1) -> (handleResolvedAddrs, 2) -> (newCCBalancerWrapper, 3) -> (Build, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Close, 0) -> (handleErr, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (NewSection, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (RunWithString, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Put, 1) -> (Create, 3) -> (HasSuffix, 2) -> (Incomplete, 0) -> (prepareCopyIn, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Close, 0) -> (handleErr, 1) -> (NewEx, 1) -> (Readline, 0) -> (prepareCopyIn, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (run, 0) -> (Gosched, 0) -> (onEachWrite, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (ioloop, 0) -> (Get2, 0) -> (IsNumber, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (RoundTrip, 1) -> (GetContentWasTruncated, 0) -> (handleReadLoopResponse, 1) -> (traceWait100Continue, 1) -> (Wait100Continue, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (watchStop, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (indexWaitForWorkRequest, 6) -> (getErrorFromIndexWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (get, 0) -> (new, 1) -> (NewCipher, 1) -> (keySchedule, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (NewClient, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (NewOperation, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (run, 0) -> (Gosched, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (run, 0) -> (Gosched, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (Dial, 3) -> (NewClient, 3) -> (closeAll, 0) -> (Reject, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (watcher, 0) -> (NewServiceConfig, 1) -> (handleServiceConfig, 1) -> (parseServiceConfig, 1) -> (generatePath, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Put, 1) -> (Create, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (Retry, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (watchStop, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Error, 0) -> (GetMessage, 0) -> (GRPCStatus, 0) -> (Impl, 2) -> (apiWaitForValidation, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (UnmarshalJSON, 1) -> (DecodeKey, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteString, 1) -> (write, 3) -> (bodyAllowedForStatus, 1) -> (logf, 3) -> (nodePoolWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (prepareCopyIn, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (dial, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (restoreContent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (run, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (bdsInstanceWaitForWorkRequest, 6) -> (getErrorFromBdsInstanceWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Error, 0) -> (GetMessage, 0) -> (GRPCStatus, 0) -> (Impl, 2) -> (clusterWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (get, 0) -> (new, 1) -> (NewCipher, 1) -> (keySchedule, 1) -> (append, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (Prepare, 1) -> (gname, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (tableWaitForWorkRequest, 6) -> (getErrorFromTableWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (Connect, 1) -> (CreateShell, 0) -> (NewShell, 1) -> (ServeAgent, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1) -> (connect, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (run, 0) -> (Gosched, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Format, 1) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (processHeaders, 1) -> (handleResponse, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Error, 0) -> (GetMessage, 0) -> (GRPCStatus, 0) -> (Impl, 2) -> (nodePoolWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (RoundTrip, 1) -> (GetContentWasTruncated, 0) -> (handleReadLoopResponse, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (NewAddress, 1) -> (handleResolvedAddrs, 2) -> (newCCBalancerWrapper, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (NewEncoder, 1) -> (newEncoderWithWriter, 1) -> (yaml_emitter_set_unicode, 2) -> (evictOldest, 1) -> (handleResolvedAddrs, 2) -> (newCCBalancerWrapper, 3) -> (Build, 2) -> (lbWatcher, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (Start, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (cleanupContent, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (catalogWaitForWorkRequest, 6) -> (getErrorFromCatalogWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (NewSession, 0) -> (newSession, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Client, 0) -> (New, 1) -> (ToLower, 1) -> (NewProjectsServiceAccountService, 1) -> (ProvisionResource, 2) -> (Apply, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (apiWaitForValidation, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (nodePoolWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (NewEncoder, 1) -> (newEncoderWithWriter, 1) -> (yaml_emitter_set_unicode, 2) -> (evictOldest, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (NewEncoder, 1) -> (newEncoderWithWriter, 1) -> (yaml_emitter_set_unicode, 2) -> (evictOldest, 1) -> (handleResolvedAddrs, 2) -> (newCCBalancerWrapper, 3) -> (Build, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Error, 0) -> (GetMessage, 0) -> (GRPCStatus, 0) -> (Impl, 2) -> (CombineBodyMedia, 4) -> (newMultipartReader, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (Update, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (NewEncoder, 1) -> (newEncoderWithWriter, 1) -> (yaml_emitter_set_unicode, 2) -> (evictOldest, 1) -> (Snapshot, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteByte, 1) -> (putEntry, 2) -> (putDelta, 1) -> (winFindWindow, 2) -> (executeCredentialProcess, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (CombineBodyMedia, 4) -> (newMultipartReader, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (Readline, 0) -> (NewOperation, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (LazyPrintf, 2) -> (addEvent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Client, 0) -> (New, 1) -> (ToLower, 1) -> (NewProjectsServiceAccountService, 1) -> (run, 0) -> (Gosched, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteByte, 1) -> (putEntry, 2) -> (putDelta, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (ioloop, 0) -> (Get2, 0) -> (IsNumber, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (uploadContent, 4) -> (uploadChunks, 4) -> (appendContent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (RoundTrip, 1) -> (GetContentWasTruncated, 0) -> (FloatValue, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (executeCredentialProcess, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Format, 1) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (newWatchClient, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteString, 1) -> (write, 3) -> (bodyAllowedForStatus, 1) -> (logf, 3) -> (Retry, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (createMultiPartObject, 0) -> (MultiPartUpload, 1) -> (singlePartUpload, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Put, 1) -> (Create, 3) -> (HasSuffix, 2) -> (Incomplete, 0) -> (RoundTripOpt, 2) -> (shouldRetryRequest, 3) -> (canRetryError, 1) -> (getStartDialLocked, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (NewEncoder, 1) -> (newEncoderWithWriter, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (append, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteByte, 1) -> (putEntry, 2) -> (putDelta, 1) -> (winFindWindow, 2) -> (waasPolicyWaitForWorkRequest, 6) -> (getErrorFromWaasPolicyWorkRequest, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (NewAddress, 1) -> (handleResolvedAddrs, 2) -> (newCCBalancerWrapper, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Close, 0) -> (handleErr, 1) -> (NewEx, 1) -> (Readline, 0) -> (ioloop, 0) -> (Get2, 0) -> (IsNumber, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (newWatcherGrpcStream, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (ProvisionResource, 2) -> (Apply, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (run, 0) -> (Gosched, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (Build, 3) -> (customAuthorityResolver, 1) -> (NewServiceConfig, 1) -> (handleServiceConfig, 1) -> (parseServiceConfig, 1) -> (generatePath, 0) -> (HasFired, 0) -> (healthCheckFunc, 4) -> (newHTTP2Client, 7)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1) -> (NewOperation, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (peerWaitForWorkRequest, 6) -> (getErrorFromBlockchainPlatformWorkRequest, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (clusterWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (Retry, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Client, 0) -> (New, 1) -> (ToLower, 1) -> (NewProjectsServiceAccountService, 1) -> (Scan, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (Scan, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteByte, 1) -> (putEntry, 2) -> (putDelta, 1) -> (winFindWindow, 2) -> (Retry, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (apiWaitForValidation, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (roundTrip, 1) -> (handleReadLoopResponse, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (LoadBalancerWaitForWorkRequest, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteByte, 1) -> (putEntry, 2) -> (putDelta, 1) -> (winFindWindow, 2) -> (nodePoolWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Format, 1) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (processSettings, 1) -> (WriteSettingsAck, 0) -> (startFrameWrite, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (Build, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (integrationInstanceWaitForWorkRequest, 6) -> (getErrorFromIntegrationInstanceWorkRequest, 6)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Put, 1) -> (Create, 3) -> (HasSuffix, 2) -> (Incomplete, 0) -> (LazyPrintf, 2) -> (addEvent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (dial, 1) -> (addConnLocked, 2) -> (newClientConn, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Client, 0) -> (New, 1) -> (ToLower, 1) -> (NewProjectsServiceAccountService, 1) -> (run, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Close, 0) -> (handleErr, 1) -> (NewEx, 1) -> (Readline, 0) -> (connect, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (Build, 3) -> (customAuthorityResolver, 1) -> (NewServiceConfig, 1) -> (handleServiceConfig, 1) -> (parseServiceConfig, 1) -> (generatePath, 0) -> (HasFired, 0) -> (healthCheckFunc, 4) -> (newHTTP2Client, 7) -> (connectionErrorf, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (watchStop, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Close, 0) -> (handleErr, 1) -> (NewEx, 1) -> (Readline, 0) -> (append, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (waasPolicyWaitForWorkRequest, 6) -> (getErrorFromWaasPolicyWorkRequest, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (apiWaitForValidation, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (ProvisionResource, 2) -> (Apply, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (RoundTrip, 1) -> (GetContentWasTruncated, 0) -> (handleReadLoopResponse, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (WriteString, 1) -> (write, 3) -> (bodyAllowedForStatus, 1) -> (logf, 3) -> (createMultiPartObject, 0) -> (MultiPartUpload, 1) -> (singlePartUpload, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (Dial, 3) -> (NewClient, 3) -> (closeAll, 0) -> (Reject, 2) -> (dropAll, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (connect, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Client, 0) -> (New, 1) -> (ToLower, 1) -> (NewProjectsServiceAccountService, 1) -> (dialStreamLocal, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (UnmarshalJSON, 1) -> (DecodeKey, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Error, 0) -> (GetMessage, 0) -> (GRPCStatus, 0) -> (Impl, 2) -> (LoadBalancerWaitForWorkRequest, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (waasPolicyWaitForWorkRequest, 6) -> (getErrorFromWaasPolicyWorkRequest, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1) -> (ProvisionResource, 2) -> (Apply, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Client, 0) -> (New, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (UnmarshalJSON, 1) -> (DecodeKey, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (Connect, 1) -> (CreateShell, 0) -> (NewShell, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (dial, 1) -> (addConnLocked, 2) -> (newClientConn, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1) -> (RoundTripOpt, 2) -> (shouldRetryRequest, 3) -> (canRetryError, 1) -> (getStartDialLocked, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (sddcWaitForWorkRequest, 6) -> (getErrorFromOcvpWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Write, 1) -> (cap, 1) -> (Append, 1) -> (Diagnostics, 1) -> (LazyPrintf, 2) -> (addEvent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (String, 0) -> (transformValue, 1) -> (Section, 1) -> (NewSection, 1) -> (ProvisionResource, 2) -> (Apply, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (, 0) -> (customAuthorityDialler, 1) -> (ParseIP, 1) -> (getState, 0) -> (Update, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Copy, 2) -> (ref, 0) -> (AddInt32, 2) -> (walk, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (executeCredentialProcess, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (workspaceWaitForWorkRequest, 6) -> (getErrorFromDataintegrationWorkspaceWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (IdentityWaitForWorkRequest, 5) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Put, 1) -> (Create, 3) -> (HasSuffix, 2) -> (Incomplete, 0) -> (CombineBodyMedia, 4) -> (newMultipartReader, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Close, 0) -> (handleErr, 1) -> (NewEx, 1) -> (Readline, 0) -> (ProvisionResource, 2) -> (Apply, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (uploadContent, 4) -> (uploadChunks, 4) -> (appendContent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (Update, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Encode, 1) -> (marshalDoc, 2) -> (nodev, 1) -> (node, 2) -> (restoreContent, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (UnmarshalJSON, 1) -> (DecodeKey, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (gatewayWaitForWorkRequest, 6) -> (getErrorFromGatewayWorkRequest, 5)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (NewAddress, 1) -> (handleResolvedAddrs, 2) -> (newCCBalancerWrapper, 3)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (dialStreamLocal, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Println, 1) -> (Outputln, 3) -> (Close, 0) -> (handleErr, 1) -> (NewEx, 1) -> (Readline, 0) -> (Snapshot, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (NewClientConn, 3) -> (newMux, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Lock, 1) -> (simpleCall, 1) -> (call, 1) -> (clientErr, 1) -> (waasPolicyWaitForWorkRequest, 6) -> (getErrorFromWaasPolicyWorkRequest, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Client, 0) -> (New, 1) -> (ToLower, 1) -> (NewProjectsServiceAccountService, 1) -> (NewOperation, 2)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (nodePoolWaitForWorkRequest, 6) -> (getErrorFromWorkRequest, 4)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (flushChunk, 0) -> (cloneState, 1) -> (deepcopy, 1) -> (setBytes, 1)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (LoadBalancerWaitForWorkRequest, 4) -> (WaitForState, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Unlock, 1) -> (ConstantTimeCompare, 2) -> (call, 1) -> (clientErr, 1) -> (Build, 3) -> (customAuthorityResolver, 1) -> (NewServiceConfig, 1) -> (handleServiceConfig, 1) -> (parseServiceConfig, 1) -> (generatePath, 0) -> (HasFired, 0)
(handlePanicFindResources, 2) -> (Logf, 2) -> (Log, 3) -> (Flush, 0) -> (Output, 1) -> (Bytes, 0) -> (uintptr, 1) -> (NumField, 0) -> (checkVersion, 0)

```

Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.

commit ID: 2f6aa93ef8643328af454512a5fe78ab006697f0

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.