Skip to content

Commit 407c53c

Browse files
author
lamai93
committed
Removed duplicated debug output.
1 parent 5dce377 commit 407c53c

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

pkg/deployment/resources/pod_creator.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,6 @@ func createArangodArgs(apiObject metav1.Object, deplSpec api.DeploymentSpec, gro
140140
}
141141

142142
versionHasAdvertisedEndpoint := versionHasAdvertisedEndpoint(version)
143-
if !versionHasAdvertisedEndpoint && deplSpec.ExternalAccess.HasAdvertisedEndpoint() {
144-
fmt.Printf("Advertised endpoint is not supported by version %s\n", version)
145-
}
146143

147144
/* if config.ServerThreads != 0 {
148145
options = append(options,

pkg/operator/crd.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,23 +39,20 @@ func (o *Operator) waitForCRD(enableDeployment, enableDeploymentReplication, ena
3939
if err := crd.WaitCRDReady(o.KubeExtCli, deplapi.ArangoDeploymentCRDName); err != nil {
4040
return maskAny(err)
4141
}
42-
log.Debug().Msg("ArangoDeployment CRD ready")
4342
}
4443

4544
if enableDeploymentReplication {
4645
log.Debug().Msg("Waiting for ArangoDeploymentReplication CRD to be ready")
4746
if err := crd.WaitCRDReady(o.KubeExtCli, replapi.ArangoDeploymentReplicationCRDName); err != nil {
4847
return maskAny(err)
4948
}
50-
log.Debug().Msg("ArangoDeploymentReplication CRD ready")
5149
}
5250

5351
if enableStorage {
5452
log.Debug().Msg("Waiting for ArangoLocalStorage CRD to be ready")
5553
if err := crd.WaitCRDReady(o.KubeExtCli, lsapi.ArangoLocalStorageCRDName); err != nil {
5654
return maskAny(err)
5755
}
58-
log.Debug().Msg("ArangoLocalStorage CRD ready")
5956
}
6057

6158
log.Debug().Msg("CRDs ready")

0 commit comments

Comments
 (0)