diff --git a/test/e2e_node/services/logs.go b/test/e2e_node/services/logs.go index 241e182f6d..3396ca0204 100644 --- a/test/e2e_node/services/logs.go +++ b/test/e2e_node/services/logs.go @@ -44,12 +44,6 @@ func (l *logFiles) String() string { // Set function of flag.Value func (l *logFiles) Set(value string) error { - // Someone else is calling flag.Parse after the flags are parsed in the - // test framework. Use this to avoid the flag being parsed twice. - // TODO(random-liu): Figure out who is parsing the flags. - if flag.Parsed() { - return nil - } var log LogFileData if err := json.Unmarshal([]byte(value), &log); err != nil { return err