cluster: make unreachable panic explicit

making revive 1.3.4 happy

Signed-off-by: Alejandro Mery <amery@jpi.io>
This commit is contained in:
2023-10-23 20:55:28 +00:00
parent 99ae34e98c
commit 986db350b4
2 changed files with 10 additions and 2 deletions
+5 -1
View File
@@ -33,7 +33,11 @@ func (m *Cluster) openWriter(name string, flags int, args ...any) (io.WriteClose
return nil, err
}
return f.(io.WriteCloser), nil
if f, ok := f.(io.WriteCloser); ok {
return f, nil
}
panic("unreachable")
}
// ReadFile reads a file from the cluster's config directory
+5 -1
View File
@@ -34,7 +34,11 @@ func (m *Machine) openWriter(name string, flags int, args ...any) (io.WriteClose
return nil, err
}
return f.(io.WriteCloser), nil
if f, ok := f.(io.WriteCloser); ok {
return f, nil
}
panic("unreachable")
}
// RemoveFile deletes a file from the machine's config directory