Skip to content

Commit 18a8b63

Browse files
authored
Merge pull request #410 from arangodb/json
Fix json marshalling specification.
2 parents b9b3e57 + fa3587f commit 18a8b63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/apis/deployment/v1alpha/deployment_spec.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727

2828
"github.com/arangodb/kube-arangodb/pkg/util"
2929
"github.com/pkg/errors"
30-
"k8s.io/api/core/v1"
30+
v1 "k8s.io/api/core/v1"
3131
)
3232

3333
const (
@@ -72,7 +72,7 @@ type DeploymentSpec struct {
7272

7373
Chaos ChaosSpec `json:"chaos"`
7474

75-
Bootstrap BootstrapSpec `json:"bootstrap",omitempty`
75+
Bootstrap BootstrapSpec `json:"bootstrap,omitempty"`
7676
}
7777

7878
// Equal compares two DeploymentSpec

0 commit comments

Comments
 (0)