mirror of https://github.com/status-im/consul.git
do not export that type
This commit is contained in:
parent
7f44100101
commit
5db185a7e4
|
@ -918,7 +918,7 @@ type HealthCheckDefinition struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type Alias HealthCheckDefinition
|
type Alias HealthCheckDefinition
|
||||||
type ExportedHealthCheckDefinition struct {
|
type exportedHealthCheckDefinition struct {
|
||||||
Interval string `json:",omitempty"`
|
Interval string `json:",omitempty"`
|
||||||
Timeout string `json:",omitempty"`
|
Timeout string `json:",omitempty"`
|
||||||
DeregisterCriticalServiceAfter string `json:",omitempty"`
|
DeregisterCriticalServiceAfter string `json:",omitempty"`
|
||||||
|
@ -926,7 +926,7 @@ type ExportedHealthCheckDefinition struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *HealthCheckDefinition) MarshalJSON() ([]byte, error) {
|
func (d *HealthCheckDefinition) MarshalJSON() ([]byte, error) {
|
||||||
exported := &ExportedHealthCheckDefinition{
|
exported := &exportedHealthCheckDefinition{
|
||||||
Alias: (*Alias)(d),
|
Alias: (*Alias)(d),
|
||||||
}
|
}
|
||||||
if d.Interval != 0 {
|
if d.Interval != 0 {
|
||||||
|
|
Loading…
Reference in New Issue