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

[log] switch fields order #1403

Merged
merged 1 commit into from
Oct 26, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions cli_tools/common/utils/logging/service/log_entry.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,12 +260,12 @@ type OutputInfo struct {

// InspectionResults contains metadata determined using automated inspection
type InspectionResults struct {
// UEFIBootable indicates whether the disk is bootable with UEFI.
UEFIBootable bool `json:"uefi_bootable,omitempty"`

// BIOSBootable indicates whether the disk is bootable with BIOS.
BIOSBootable bool `json:"bios_bootable,omitempty"`

// UEFIBootable indicates whether the disk is bootable with UEFI.
UEFIBootable bool `json:"uefi_bootable,omitempty"`

// RootFS indicates the file system type of the partition containing
// the root directory ("/").
RootFS string `json:"root_fs,omitempty"`
Expand Down