Cb-tumblebug: Need a space for an error message

Created on 24 Sep 2021  路  7Comments  路  Source: cloud-barista/cb-tumblebug

What happened
:

Need a space for the error message in https://github.com/cloud-barista/cb-tumblebug/blob/fc375a6623fb07c0512fb1eb6bae61ef3fbc2ebf/src/core/mcis/control.go#L483

Proposed solution
:

        result, err := RunSSH(vmIp, sshPort, verifiedUserName, privateKey, cmd)
        if err != nil {
            fmt.Println("[ERR: result] " + "[ERR: err] " + err.Error())
-           return "", "", fmt.Errorf("Cannot do ssh, with" + verifiedUserName + ", " + err.Error())
+           return "", "", fmt.Errorf("Cannot do ssh, with " + verifiedUserName + ", " + err.Error())
        }

with" --> with "

bug good first issue

All 7 comments

return "", "", fmt.Errorf("cannot do ssh with %s, %s", verifiedUserName, err.Error())

Hello @betelgeuse-7

Are you interested on this issue ? :)
If so, I can assign this issue to you.

This issue is easy to handle and we are happy to assist you !

@seokho-son yes, I can take this issue. This is easy to solve. But I cannot make a pr today, but tomorrow. If that's okay to you, then assign me. :)

@betelgeuse-7 You don't have to rush at all :)
I am happy to assign new contributor !

/assign @betelgeuse-7

ok thanks @seokho-son

Fixed from the PR #780

Was this page helpful?
0 / 5 - 0 ratings

Related issues

jihoon-seo picture jihoon-seo  路  4Comments

seokho-son picture seokho-son  路  3Comments

seokho-son picture seokho-son  路  5Comments

seokho-son picture seokho-son  路  3Comments

jihoon-seo picture jihoon-seo  路  4Comments