Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions litmus-portal/cluster-agents/subscriber/pkg/types/connect.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ type Data struct {
}

type ClusterConfirm struct {
IsClusterConfirmed bool `json:isClusterConfirmed`
NewAccessKey string `json:newAccessKey`
ClusterID string `json:cluster_id`
IsClusterConfirmed bool `json:"isClusterConfirmed"`
NewAccessKey string `json:"newAccessKey"`
ClusterID string `json:"cluster_id"`
}

type ClusterConnect struct {
Expand Down
2 changes: 1 addition & 1 deletion litmus-portal/cluster-agents/subscriber/pkg/types/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ type PodLogRequest struct {

type PodLog struct {
MainPod string `json:"main_logs"`
ChaosPod map[string]string `json:"chaos_logs",omitempty`
ChaosPod map[string]string `json:"chaos_logs,omitempty"`
}