Skip to content

Commit

Permalink
Merge pull request #8995 from leseb/no-error-merge
Browse files Browse the repository at this point in the history
ceph: only merge stderr on error
  • Loading branch information
leseb committed Oct 18, 2021
2 parents 034018a + 0e41e36 commit df2b6fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion pkg/daemon/ceph/client/command.go
Expand Up @@ -164,7 +164,9 @@ func (c *CephToolCommand) run() ([]byte, error) {
if command == RBDTool {
if c.RemoteExecution {
output, stderr, err = c.context.RemoteExecutor.ExecCommandInContainerWithFullOutputWithTimeout(ProxyAppLabel, CommandProxyInitContainerName, c.clusterInfo.Namespace, append([]string{command}, args...)...)
output = fmt.Sprintf("%s. %s", output, stderr)
if stderr != "" || err != nil {
err = errors.Errorf("%s. %s", err.Error(), stderr)
}
} else if c.timeout == 0 {
output, err = c.context.Executor.ExecuteCommandWithOutput(command, args...)
} else {
Expand Down
2 changes: 1 addition & 1 deletion pkg/daemon/ceph/client/command_test.go
Expand Up @@ -140,7 +140,7 @@ func TestNewRBDCommand(t *testing.T) {
assert.Error(t, err)
assert.Len(t, cmd.args, 4)
// This is not the best but it shows we go through the right codepath
assert.EqualError(t, err, "no pods found with selector \"rook-ceph-mgr\"")
assert.Contains(t, err.Error(), "no pods found with selector \"rook-ceph-mgr\"")
})

t.Run("context canceled nothing to run", func(t *testing.T) {
Expand Down

0 comments on commit df2b6fa

Please sign in to comment.