Alex Vanin
20de74a505
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
14 lines
320 B
Go
14 lines
320 B
Go
package internal
|
|
|
|
import clientcore "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/core/client"
|
|
|
|
type errorReporter interface {
|
|
ReportError(error)
|
|
}
|
|
|
|
// ReportError drops client connection if possible.
|
|
func ReportError(c clientcore.Client, err error) {
|
|
if ce, ok := c.(errorReporter); ok {
|
|
ce.ReportError(err)
|
|
}
|
|
}
|