in src/main/java/org/jetbrains/teamcity/githubauth/GitHubOAuth.java [210:219]
public OAuthConnectionDescriptor getSuitableConnection() {
if (!isAuthModuleConfigured()) {
throw new GitHubLoginException("Attempt to login via GitHub OAuth while corresponding auth module is not configured");
}
OAuthConnectionDescriptor found = tryFindSuitableConnection();
if (found == null) {
throw new GitHubLoginException("Attempt to login via GitHub OAuth while GitHub.com Connection in the Root Project is not configured");
}
return found;
}