test(agentcompat): expose connection count fixture option

Co-authored-by: naiba/CloudCode <hi+cloudcode@nai.ba>
This commit is contained in:
naiba
2026-07-20 08:02:19 +00:00
co-authored by naiba/CloudCode
parent d96b34b0d4
commit 02ccdf038c
+14 -13
View File
@@ -26,19 +26,20 @@ const (
) )
type AgentStartConfig struct { type AgentStartConfig struct {
SourceDir string SourceDir string
PreparedBinary *PreparedBinary PreparedBinary *PreparedBinary
Endpoint string Endpoint string
Secret string Secret string
UUID string UUID string
TLS bool TLS bool
Debug bool Debug bool
CAFilePath string SkipConnectionCount bool
FMObserverRunID string CAFilePath string
Credential *syscall.Credential FMObserverRunID string
newSupervisor func(context.Context, processharness.Spec) *processharness.Supervisor Credential *syscall.Credential
trackPID func(int) error newSupervisor func(context.Context, processharness.Spec) *processharness.Supervisor
trackProcessGroup func(int) error trackPID func(int) error
trackProcessGroup func(int) error
} }
type AgentStartError struct { type AgentStartError struct {