Fix #516 : Update TMO frontend to handle 405s from aggregator

This commit is contained in:
Sylvia23 2018-04-16 23:29:28 +05:30 коммит произвёл Chris H-C
Родитель 78a0939c76
Коммит dc67d32509
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -477,8 +477,8 @@
function populateEntriesMap(entriesMap, url, callback) {
Telemetry.getJSON(url, function (histograms, status) {
if (histograms === null) {
assert(status === 404 || status === 500 , "Could not obtain evolution: status " +
status + " (" + url + ")"); // Only allow null evolution if it is 404 or 500 - if there is no evolution for the given filters
assert(status === 404 || status === 500 || status === 405 , "Could not obtain evolution: status " +
status + " (" + url + ")"); // Only allow null evolution if it is 404, 500 or 405 - if there is no evolution for the given filters
callback({});
} else {
histograms.data.forEach(function (entry) {