Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ object LogKey extends Enumeration {
val MAX_EXECUTOR_FAILURES = Value
val MAX_SIZE = Value
val MIN_SIZE = Value
val REMOTE_ADDRESS = Value
val POD_ID = Value
val REMOTE_ADDRESS = Value

type LogKey = Value
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class LogKeySuite

test("LogKey enumeration fields must be sorted alphabetically") {
val keys = LogKey.values.toSeq
assert(keys === keys.sorted, "LogKey enumeration fields must be sorted alphabetically")
assert(keys === keys.sortBy(_.toString),
"LogKey enumeration fields must be sorted alphabetically")
}
}