Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move Updated field from Status to EntryWithStatus #684

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions pkg/transport/entry.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,16 +166,14 @@ type Status struct {
// IsUp represents whether the Transport is up.
// A Transport that is down will fail to forward Packets.
IsUp bool `json:"is_up"`

// Updated is the epoch timestamp of when the status is last updated.
Updated int64 `json:"updated,omitempty"`
}

// EntryWithStatus stores Entry and Statuses returned by both Edges.
type EntryWithStatus struct {
Entry *Entry `json:"entry"`
IsUp bool `json:"is_up"`
Registered int64 `json:"registered"`
Updated int64 `json:"updated"`
Statuses [2]bool `json:"statuses"`
}

Expand Down