Revert "[Develop] Add concurrency limits to async Fastly API requests"

This commit is contained in:
Paul Kaplan 2019-08-07 14:01:10 -04:00 committed by GitHub
parent b55d879162
commit de9a2b1d87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,8 +8,6 @@ var routeJson = require('../src/routes.json');
const FASTLY_SERVICE_ID = process.env.FASTLY_SERVICE_ID || '';
const S3_BUCKET_NAME = process.env.S3_BUCKET_NAME || '';
const FASTLY_CONCURRENCY = process.env.FASTLY_CONCURRENCY || 1;
var fastly = require('./lib/fastly-extended')(process.env.FASTLY_API_KEY, FASTLY_SERVICE_ID);
var extraAppRoutes = [
@ -94,7 +92,7 @@ async.auto({
}],
appRouteRequestConditions: ['version', function (results, cb) {
var conditions = {};
async.eachOfLimit(routes, FASTLY_CONCURRENCY, function (route, id, cb2) {
async.forEachOf(routes, function (route, id, cb2) {
var condition = {
name: fastlyConfig.getConditionNameForRoute(route, 'request'),
statement: 'req.url ~ "' + route.pattern + '"',
@ -114,7 +112,7 @@ async.auto({
}],
appRouteHeaders: ['version', 'appRouteRequestConditions', function (results, cb) {
var headers = {};
async.eachOfLimit(routes, FASTLY_CONCURRENCY, function (route, id, cb2) {
async.forEachOf(routes, function (route, id, cb2) {
if (route.redirect) {
async.auto({
responseCondition: function (cb3) {
@ -147,7 +145,7 @@ async.auto({
};
fastly.setFastlyHeader(results.version, header, cb3);
}]
}, FASTLY_CONCURRENCY, function (err, redirectResults) {
}, function (err, redirectResults) {
if (err) return cb2(err);
headers[id] = redirectResults.redirectHeader;
cb2(null, redirectResults);
@ -215,7 +213,7 @@ async.auto({
};
fastly.setFastlyHeader(results.version, header, cb2);
}]
}, FASTLY_CONCURRENCY, function (err, redirectResults) {
}, function (err, redirectResults) {
if (err) return cb(err);
cb(null, redirectResults);
});
@ -261,12 +259,12 @@ async.auto({
};
fastly.setFastlyHeader(results.version, header, cb2);
}]
}, FASTLY_CONCURRENCY, function (err, redirectResults) {
}, function (err, redirectResults) {
if (err) return cb(err);
cb(null, redirectResults);
});
}]
}, FASTLY_CONCURRENCY, function (err, results) {
}, function (err, results) {
if (err) throw new Error(err);
if (process.env.FASTLY_ACTIVATE_CHANGES) {
fastly.activateVersion(results.version, function (e, resp) {