kopia lustrzana https://github.com/c9/core
Merge pull request +7453 from c9/fix-vfs-error
Fix protocol change errorpull/117/merge
commit
076a351853
|
@ -169,8 +169,11 @@ define(function(require, exports, module) {
|
||||||
var servers = shuffleServers(version, vfsServers);
|
var servers = shuffleServers(version, vfsServers);
|
||||||
|
|
||||||
// check for version
|
// check for version
|
||||||
if (vfsServers.length && !servers.length)
|
if (vfsServers.length && !servers.length) {
|
||||||
|
if (region === "beta")
|
||||||
|
return callback(fatalError("Staging VFS server(s) not working", "reload"));
|
||||||
return onProtocolChange(callback);
|
return onProtocolChange(callback);
|
||||||
|
}
|
||||||
|
|
||||||
var latestServer = 0;
|
var latestServer = 0;
|
||||||
var foundServer = false;
|
var foundServer = false;
|
||||||
|
@ -295,6 +298,7 @@ define(function(require, exports, module) {
|
||||||
// I'm keeping this vague because we don't want users to blame
|
// I'm keeping this vague because we don't want users to blame
|
||||||
// a "cloud9 update" for losing work
|
// a "cloud9 update" for losing work
|
||||||
deleteOldVfs();
|
deleteOldVfs();
|
||||||
|
metrics.increment("vfs.failed.protocol_mismatch", 1, true);
|
||||||
return callback(fatalError("Protocol change detected", "reload"));
|
return callback(fatalError("Protocol change detected", "reload"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue