Workspaces out?
-
Since this morning, I cannot get into workspaces (I get a "Oops! Something went wrong" message), nor get a connection to my repository with GIT (error 301: moved permanently). I did not see any outage notification. Am I the only one having this issue, or did I miss something? Thanks :)
[Flags]
public enum Bool {
True,
False,
ForSure,
Maybe,
ProbablyNot,
Depends,
NotDecidedYet,
Undefined
} -
Since this morning, I cannot get into workspaces (I get a "Oops! Something went wrong" message), nor get a connection to my repository with GIT (error 301: moved permanently). I did not see any outage notification. Am I the only one having this issue, or did I miss something? Thanks :)
[Flags]
public enum Bool {
True,
False,
ForSure,
Maybe,
ProbablyNot,
Depends,
NotDecidedYet,
Undefined
}As far as I know everything should work fine now. Your account works fine for me, too. I can do git clone https://git.codeproject.com/user-890501/oph without problems as well. Could it be some network problem on your end? Are you using any proxy?
-
Since this morning, I cannot get into workspaces (I get a "Oops! Something went wrong" message), nor get a connection to my repository with GIT (error 301: moved permanently). I did not see any outage notification. Am I the only one having this issue, or did I miss something? Thanks :)
[Flags]
public enum Bool {
True,
False,
ForSure,
Maybe,
ProbablyNot,
Depends,
NotDecidedYet,
Undefined
}It seems that you are using wrong URLs for your git. We do see the git-related requests directed toward workspaces.codeproject.com instead of git.codeproject.com. The 301 error code returned is when 2 errors are cumulated: use http instead of https and workspaces instead of git server. Please make sure that you are using git urls (like https://git.codeproject.com/user-890501/oph in this case), and use https instead of http.
-
It seems that you are using wrong URLs for your git. We do see the git-related requests directed toward workspaces.codeproject.com instead of git.codeproject.com. The 301 error code returned is when 2 errors are cumulated: use http instead of https and workspaces instead of git server. Please make sure that you are using git urls (like https://git.codeproject.com/user-890501/oph in this case), and use https instead of http.
-
That's it, I did not retain the correct url for git synchronization. Tried with your instructions and everything is working well now. Thank you :)
[Flags]
public enum Bool {
True, False, ForSure, Maybe, ProbablyNot, Depends, NotDecidedYet, Undefined
}Great, thanks for update.