Skip to content

Commit

Permalink
added error message on unsuccessfull cloud creation
Browse files Browse the repository at this point in the history
  • Loading branch information
seuffert committed Nov 17, 2011
1 parent 11e85b7 commit 653ed80
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion XBSlink/xbs_cloudlist.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,8 @@ public bool JoinOrCreateCloud(String url, String cloudname, String max_nodes, St
}
if (!result.StartsWith(xbs_cloudlist_returncode.RETURN_CODE_OK))
{
MessageBox.Show("could not join cloud "+cloudname);
MessageBox.Show("could not join cloud "+cloudname+Environment.NewLine+"Error: \""+result+"\""+
Environment.NewLine+Environment.NewLine + "remember, only XBSlink nodes with an open port can create clouds", "XBSlink error", MessageBoxButtons.OK, MessageBoxIcon.Error);
return false;
}
#if DEBUG
Expand Down

0 comments on commit 653ed80

Please sign in to comment.