diff options
Diffstat (limited to 'server/models/request.js')
-rw-r--r-- | server/models/request.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/models/request.js b/server/models/request.js index 26953e5f5..e048c288b 100644 --- a/server/models/request.js +++ b/server/models/request.js | |||
@@ -152,8 +152,6 @@ function makeRequests () { | |||
152 | return | 152 | return |
153 | } | 153 | } |
154 | 154 | ||
155 | logger.info('Making requests to friends.') | ||
156 | |||
157 | // We want to group requests by destinations pod and endpoint | 155 | // We want to group requests by destinations pod and endpoint |
158 | const requestsToMakeGrouped = {} | 156 | const requestsToMakeGrouped = {} |
159 | Object.keys(requests).forEach(function (toPodId) { | 157 | Object.keys(requests).forEach(function (toPodId) { |
@@ -176,6 +174,8 @@ function makeRequests () { | |||
176 | }) | 174 | }) |
177 | }) | 175 | }) |
178 | 176 | ||
177 | logger.info('Making requests to friends.', { requests: requestsToMakeGrouped }) | ||
178 | |||
179 | const goodPods = [] | 179 | const goodPods = [] |
180 | const badPods = [] | 180 | const badPods = [] |
181 | 181 | ||