Skip to content

Commit e32d385

Browse files
committed
Fix gofmt issues
1 parent 78eec36 commit e32d385

File tree

50 files changed

+106
-103
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+106
-103
lines changed

chaoslib/litmus/container-kill/helper/container-kill.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ func validate(t targetDetails, timeout, delay int, clients clients.ClientSets) e
171171
return verifyRestartCount(t, timeout, delay, clients, t.RestartCountBefore)
172172
}
173173

174-
//stopContainerdContainer kill the application container
174+
// stopContainerdContainer kill the application container
175175
func stopContainerdContainer(containerIDs []string, socketPath, signal, source string) error {
176176
if signal != "SIGKILL" && signal != "SIGTERM" {
177177
return cerrors.Error{ErrorCode: cerrors.ErrorTypeHelper, Source: source, Reason: fmt.Sprintf("unsupported signal %s, use either SIGTERM or SIGKILL", signal)}
@@ -192,7 +192,7 @@ func stopContainerdContainer(containerIDs []string, socketPath, signal, source s
192192
return nil
193193
}
194194

195-
//stopDockerContainer kill the application container
195+
// stopDockerContainer kill the application container
196196
func stopDockerContainer(containerIDs []string, socketPath, signal, source string) error {
197197
var errOut, out bytes.Buffer
198198
cmd := exec.Command("sudo", "docker", "--host", fmt.Sprintf("unix://%s", socketPath), "kill", "--signal", signal)
@@ -205,7 +205,7 @@ func stopDockerContainer(containerIDs []string, socketPath, signal, source strin
205205
return nil
206206
}
207207

208-
//getRestartCount return the restart count of target container
208+
// getRestartCount return the restart count of target container
209209
func getRestartCount(target targetDetails, clients clients.ClientSets) (int, error) {
210210
pod, err := clients.KubeClient.CoreV1().Pods(target.Namespace).Get(context.Background(), target.Name, v1.GetOptions{})
211211
if err != nil {
@@ -221,7 +221,7 @@ func getRestartCount(target targetDetails, clients clients.ClientSets) (int, err
221221
return restartCount, nil
222222
}
223223

224-
//verifyRestartCount verify the restart count of target container that it is restarted or not after chaos injection
224+
// verifyRestartCount verify the restart count of target container that it is restarted or not after chaos injection
225225
func verifyRestartCount(t targetDetails, timeout, delay int, clients clients.ClientSets, restartCountBefore int) error {
226226

227227
restartCountAfter := 0
@@ -247,7 +247,7 @@ func verifyRestartCount(t targetDetails, timeout, delay int, clients clients.Cli
247247
})
248248
}
249249

250-
//getENV fetches all the env variables from the runner pod
250+
// getENV fetches all the env variables from the runner pod
251251
func getENV(experimentDetails *experimentTypes.ExperimentDetails) {
252252
experimentDetails.ExperimentName = types.Getenv("EXPERIMENT_NAME", "")
253253
experimentDetails.InstanceID = types.Getenv("INSTANCE_ID", "")

chaoslib/litmus/container-kill/lib/container-kill.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2323
)
2424

25-
//PrepareContainerKill contains the preparation steps before chaos injection
25+
// PrepareContainerKill contains the preparation steps before chaos injection
2626
func PrepareContainerKill(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails) error {
2727

2828
var err error
@@ -280,8 +280,8 @@ func getPodEnv(experimentsDetails *experimentTypes.ExperimentDetails, targets st
280280
return envDetails.ENV
281281
}
282282

283-
//SetChaosTunables will setup a random value within a given range of values
284-
//If the value is not provided in range it'll setup the initial provided value.
283+
// SetChaosTunables will setup a random value within a given range of values
284+
// If the value is not provided in range it'll setup the initial provided value.
285285
func SetChaosTunables(experimentsDetails *experimentTypes.ExperimentDetails) {
286286
experimentsDetails.PodsAffectedPerc = common.ValidateRange(experimentsDetails.PodsAffectedPerc)
287287
experimentsDetails.Sequence = common.GetRandomSequence(experimentsDetails.Sequence)

chaoslib/litmus/disk-fill/lib/disk-fill.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2424
)
2525

26-
//PrepareDiskFill contains the preparation steps before chaos injection
26+
// PrepareDiskFill contains the preparation steps before chaos injection
2727
func PrepareDiskFill(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails) error {
2828

2929
var err error

chaoslib/litmus/http-chaos/lib/header/header.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/sirupsen/logrus"
1010
)
1111

12-
//PodHttpModifyHeaderChaos contains the steps to prepare and inject http modify header chaos
12+
// PodHttpModifyHeaderChaos contains the steps to prepare and inject http modify header chaos
1313
func PodHttpModifyHeaderChaos(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails) error {
1414

1515
log.InfoWithValues("[Info]: The chaos tunables are:", logrus.Fields{

chaoslib/litmus/http-chaos/lib/http-chaos.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2323
)
2424

25-
//PrepareAndInjectChaos contains the preparation & injection steps
25+
// PrepareAndInjectChaos contains the preparation & injection steps
2626
func PrepareAndInjectChaos(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails, args string) error {
2727

2828
var err error
@@ -284,8 +284,8 @@ func getPodEnv(experimentsDetails *experimentTypes.ExperimentDetails, targets, a
284284
return envDetails.ENV
285285
}
286286

287-
//SetChaosTunables will set up a random value within a given range of values
288-
//If the value is not provided in range it'll set up the initial provided value.
287+
// SetChaosTunables will set up a random value within a given range of values
288+
// If the value is not provided in range it'll set up the initial provided value.
289289
func SetChaosTunables(experimentsDetails *experimentTypes.ExperimentDetails) {
290290
experimentsDetails.PodsAffectedPerc = common.ValidateRange(experimentsDetails.PodsAffectedPerc)
291291
experimentsDetails.Sequence = common.GetRandomSequence(experimentsDetails.Sequence)

chaoslib/litmus/http-chaos/lib/latency/latency.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/sirupsen/logrus"
1212
)
1313

14-
//PodHttpLatencyChaos contains the steps to prepare and inject http latency chaos
14+
// PodHttpLatencyChaos contains the steps to prepare and inject http latency chaos
1515
func PodHttpLatencyChaos(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails) error {
1616

1717
log.InfoWithValues("[Info]: The chaos tunables are:", logrus.Fields{

chaoslib/litmus/http-chaos/lib/reset/reset.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/sirupsen/logrus"
1212
)
1313

14-
//PodHttpResetPeerChaos contains the steps to prepare and inject http reset peer chaos
14+
// PodHttpResetPeerChaos contains the steps to prepare and inject http reset peer chaos
1515
func PodHttpResetPeerChaos(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails) error {
1616

1717
log.InfoWithValues("[Info]: The chaos tunables are:", logrus.Fields{

chaoslib/litmus/network-chaos/helper/netem.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ func Helper(clients clients.ClientSets) {
7676

7777
}
7878

79-
//preparePodNetworkChaos contains the prepration steps before chaos injection
79+
// preparePodNetworkChaos contains the prepration steps before chaos injection
8080
func preparePodNetworkChaos(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails, resultDetails *types.ResultDetails) error {
8181

8282
targetEnv := os.Getenv("TARGETS")
@@ -295,7 +295,7 @@ type targetDetails struct {
295295
Source string
296296
}
297297

298-
//getENV fetches all the env variables from the runner pod
298+
// getENV fetches all the env variables from the runner pod
299299
func getENV(experimentDetails *experimentTypes.ExperimentDetails) {
300300
experimentDetails.ExperimentName = types.Getenv("EXPERIMENT_NAME", "")
301301
experimentDetails.InstanceID = types.Getenv("INSTANCE_ID", "")

chaoslib/litmus/network-chaos/lib/corruption/corruption.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"github.com/litmuschaos/litmus-go/pkg/types"
88
)
99

10-
//PodNetworkCorruptionChaos contains the steps to prepare and inject chaos
10+
// PodNetworkCorruptionChaos contains the steps to prepare and inject chaos
1111
func PodNetworkCorruptionChaos(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails) error {
1212

1313
args := "corrupt " + experimentsDetails.NetworkPacketCorruptionPercentage

chaoslib/litmus/network-chaos/lib/duplication/duplication.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"github.com/litmuschaos/litmus-go/pkg/types"
88
)
99

10-
//PodNetworkDuplicationChaos contains the steps to prepare and inject chaos
10+
// PodNetworkDuplicationChaos contains the steps to prepare and inject chaos
1111
func PodNetworkDuplicationChaos(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails) error {
1212

1313
args := "duplicate " + experimentsDetails.NetworkPacketDuplicationPercentage

chaoslib/litmus/network-chaos/lib/latency/latency.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/litmuschaos/litmus-go/pkg/types"
1010
)
1111

12-
//PodNetworkLatencyChaos contains the steps to prepare and inject chaos
12+
// PodNetworkLatencyChaos contains the steps to prepare and inject chaos
1313
func PodNetworkLatencyChaos(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails) error {
1414

1515
args := "delay " + strconv.Itoa(experimentsDetails.NetworkLatency) + "ms " + strconv.Itoa(experimentsDetails.Jitter) + "ms"

chaoslib/litmus/network-chaos/lib/loss/loss.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"github.com/litmuschaos/litmus-go/pkg/types"
88
)
99

10-
//PodNetworkLossChaos contains the steps to prepare and inject chaos
10+
// PodNetworkLossChaos contains the steps to prepare and inject chaos
1111
func PodNetworkLossChaos(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails) error {
1212

1313
args := "loss " + experimentsDetails.NetworkPacketLossPercentage

chaoslib/litmus/network-chaos/lib/network-chaos.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var serviceMesh = []string{"istio", "envoy"}
2828
var destIpsSvcMesh string
2929
var destIps string
3030

31-
//PrepareAndInjectChaos contains the preparation & injection steps
31+
// PrepareAndInjectChaos contains the preparation & injection steps
3232
func PrepareAndInjectChaos(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails, args string) error {
3333

3434
var err error
@@ -414,8 +414,8 @@ func getIpsForTargetHosts(targetHosts string, clients clients.ClientSets, servic
414414
return strings.Join(commaSeparatedIPs, ","), nil
415415
}
416416

417-
//SetChaosTunables will set up a random value within a given range of values
418-
//If the value is not provided in range it'll set up the initial provided value.
417+
// SetChaosTunables will set up a random value within a given range of values
418+
// If the value is not provided in range it'll set up the initial provided value.
419419
func SetChaosTunables(experimentsDetails *experimentTypes.ExperimentDetails) {
420420
experimentsDetails.NetworkPacketLossPercentage = common.ValidateRange(experimentsDetails.NetworkPacketLossPercentage)
421421
experimentsDetails.NetworkPacketCorruptionPercentage = common.ValidateRange(experimentsDetails.NetworkPacketCorruptionPercentage)

chaoslib/litmus/node-cpu-hog/lib/node-cpu-hog.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ func injectChaosInParallelMode(experimentsDetails *experimentTypes.ExperimentDet
217217
return nil
218218
}
219219

220-
//setCPUCapacity fetch the node cpu capacity
220+
// setCPUCapacity fetch the node cpu capacity
221221
func setCPUCapacity(experimentsDetails *experimentTypes.ExperimentDetails, appNode string, clients clients.ClientSets) error {
222222
node, err := clients.KubeClient.CoreV1().Nodes().Get(context.Background(), appNode, v1.GetOptions{})
223223
if err != nil {
@@ -278,8 +278,8 @@ func createHelperPod(experimentsDetails *experimentTypes.ExperimentDetails, chao
278278
return nil
279279
}
280280

281-
//setChaosTunables will set up a random value within a given range of values
282-
//If the value is not provided in range it'll set up the initial provided value.
281+
// setChaosTunables will set up a random value within a given range of values
282+
// If the value is not provided in range it'll set up the initial provided value.
283283
func setChaosTunables(experimentsDetails *experimentTypes.ExperimentDetails) {
284284
experimentsDetails.NodeCPUcores = common.ValidateRange(experimentsDetails.NodeCPUcores)
285285
experimentsDetails.CPULoad = common.ValidateRange(experimentsDetails.CPULoad)

chaoslib/litmus/node-drain/lib/node-drain.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var (
3131
inject, abort chan os.Signal
3232
)
3333

34-
//PrepareNodeDrain contains the preparation steps before chaos injection
34+
// PrepareNodeDrain contains the preparation steps before chaos injection
3535
func PrepareNodeDrain(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails) error {
3636

3737
// inject channel is used to transmit signal notifications.

chaoslib/litmus/node-io-stress/lib/node-io-stress.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -287,8 +287,8 @@ func getContainerArguments(experimentsDetails *experimentTypes.ExperimentDetails
287287
return stressArgs
288288
}
289289

290-
//setChaosTunables will set up a random value within a given range of values
291-
//If the value is not provided in range it'll set up the initial provided value.
290+
// setChaosTunables will set up a random value within a given range of values
291+
// If the value is not provided in range it'll set up the initial provided value.
292292
func setChaosTunables(experimentsDetails *experimentTypes.ExperimentDetails) {
293293
experimentsDetails.FilesystemUtilizationBytes = common.ValidateRange(experimentsDetails.FilesystemUtilizationBytes)
294294
experimentsDetails.FilesystemUtilizationPercentage = common.ValidateRange(experimentsDetails.FilesystemUtilizationPercentage)

chaoslib/litmus/node-memory-hog/lib/node-memory-hog.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -362,8 +362,8 @@ func createHelperPod(experimentsDetails *experimentTypes.ExperimentDetails, chao
362362
return nil
363363
}
364364

365-
//setChaosTunables will set up a random value within a given range of values
366-
//If the value is not provided in range it'll set up the initial provided value.
365+
// setChaosTunables will set up a random value within a given range of values
366+
// If the value is not provided in range it'll set up the initial provided value.
367367
func setChaosTunables(experimentsDetails *experimentTypes.ExperimentDetails) {
368368
experimentsDetails.MemoryConsumptionMebibytes = common.ValidateRange(experimentsDetails.MemoryConsumptionMebibytes)
369369
experimentsDetails.MemoryConsumptionPercentage = common.ValidateRange(experimentsDetails.MemoryConsumptionPercentage)

chaoslib/litmus/node-taint/lib/node-taint.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var (
2828
inject, abort chan os.Signal
2929
)
3030

31-
//PrepareNodeTaint contains the preparation steps before chaos injection
31+
// PrepareNodeTaint contains the preparation steps before chaos injection
3232
func PrepareNodeTaint(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails) error {
3333

3434
// inject channel is used to transmit signal notifications.

chaoslib/litmus/pod-autoscaler/lib/pod-autoscaler.go

+8-8
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var (
3131
appsv1StatefulsetClient appsv1.StatefulSetInterface
3232
)
3333

34-
//PreparePodAutoscaler contains the preparation steps and chaos injection steps
34+
// PreparePodAutoscaler contains the preparation steps and chaos injection steps
3535
func PreparePodAutoscaler(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails) error {
3636

3737
//Waiting for the ramp time before chaos injection
@@ -117,7 +117,7 @@ func getSliceOfTotalApplicationsTargeted(appList []experimentTypes.ApplicationUn
117117
return appList[:newAppListLength]
118118
}
119119

120-
//getDeploymentDetails is used to get the name and total number of replicas of the deployment
120+
// getDeploymentDetails is used to get the name and total number of replicas of the deployment
121121
func getDeploymentDetails(experimentsDetails *experimentTypes.ExperimentDetails) ([]experimentTypes.ApplicationUnderTest, error) {
122122

123123
deploymentList, err := appsv1DeploymentClient.List(context.Background(), metav1.ListOptions{LabelSelector: experimentsDetails.AppLabel})
@@ -135,7 +135,7 @@ func getDeploymentDetails(experimentsDetails *experimentTypes.ExperimentDetails)
135135
return getSliceOfTotalApplicationsTargeted(appsUnderTest, experimentsDetails), nil
136136
}
137137

138-
//getStatefulsetDetails is used to get the name and total number of replicas of the statefulsets
138+
// getStatefulsetDetails is used to get the name and total number of replicas of the statefulsets
139139
func getStatefulsetDetails(experimentsDetails *experimentTypes.ExperimentDetails) ([]experimentTypes.ApplicationUnderTest, error) {
140140

141141
statefulsetList, err := appsv1StatefulsetClient.List(context.Background(), metav1.ListOptions{LabelSelector: experimentsDetails.AppLabel})
@@ -154,7 +154,7 @@ func getStatefulsetDetails(experimentsDetails *experimentTypes.ExperimentDetails
154154
return getSliceOfTotalApplicationsTargeted(appsUnderTest, experimentsDetails), nil
155155
}
156156

157-
//podAutoscalerChaosInDeployment scales up the replicas of deployment and verify the status
157+
// podAutoscalerChaosInDeployment scales up the replicas of deployment and verify the status
158158
func podAutoscalerChaosInDeployment(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, appsUnderTest []experimentTypes.ApplicationUnderTest, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails) error {
159159

160160
// Scale Application
@@ -185,7 +185,7 @@ func podAutoscalerChaosInDeployment(experimentsDetails *experimentTypes.Experime
185185
return deploymentStatusCheck(experimentsDetails, clients, appsUnderTest, resultDetails, eventsDetails, chaosDetails)
186186
}
187187

188-
//podAutoscalerChaosInStatefulset scales up the replicas of statefulset and verify the status
188+
// podAutoscalerChaosInStatefulset scales up the replicas of statefulset and verify the status
189189
func podAutoscalerChaosInStatefulset(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, appsUnderTest []experimentTypes.ApplicationUnderTest, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails) error {
190190

191191
// Scale Application
@@ -305,7 +305,7 @@ func statefulsetStatusCheck(experimentsDetails *experimentTypes.ExperimentDetail
305305
return nil
306306
}
307307

308-
//autoscalerRecoveryInDeployment rollback the replicas to initial values in deployment
308+
// autoscalerRecoveryInDeployment rollback the replicas to initial values in deployment
309309
func autoscalerRecoveryInDeployment(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, appsUnderTest []experimentTypes.ApplicationUnderTest, chaosDetails *types.ChaosDetails) error {
310310

311311
// Scale back to initial number of replicas
@@ -351,7 +351,7 @@ func autoscalerRecoveryInDeployment(experimentsDetails *experimentTypes.Experime
351351
})
352352
}
353353

354-
//autoscalerRecoveryInStatefulset rollback the replicas to initial values in deployment
354+
// autoscalerRecoveryInStatefulset rollback the replicas to initial values in deployment
355355
func autoscalerRecoveryInStatefulset(experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, appsUnderTest []experimentTypes.ApplicationUnderTest, chaosDetails *types.ChaosDetails) error {
356356

357357
// Scale back to initial number of replicas
@@ -399,7 +399,7 @@ func autoscalerRecoveryInStatefulset(experimentsDetails *experimentTypes.Experim
399399

400400
func int32Ptr(i int32) *int32 { return &i }
401401

402-
//abortPodAutoScalerChaos go routine will continuously watch for the abort signal for the entire chaos duration and generate the required events and result
402+
// abortPodAutoScalerChaos go routine will continuously watch for the abort signal for the entire chaos duration and generate the required events and result
403403
func abortPodAutoScalerChaos(appsUnderTest []experimentTypes.ApplicationUnderTest, experimentsDetails *experimentTypes.ExperimentDetails, clients clients.ClientSets, resultDetails *types.ResultDetails, eventsDetails *types.EventDetails, chaosDetails *types.ChaosDetails) {
404404

405405
// signChan channel is used to transmit signal notifications.

0 commit comments

Comments
 (0)