diff --git a/src/lib/actions/Report.js b/src/lib/actions/Report.js index 90c311a88dbd..37589b165c8f 100644 --- a/src/lib/actions/Report.js +++ b/src/lib/actions/Report.js @@ -313,6 +313,7 @@ function fetchAll(shouldRedirectToFirstReport = true, shouldFetchActions = false Ion.merge(`${IONKEYS.COLLECTION.REPORT}${report.reportID}`, getSimplifiedReportObject(report)); if (shouldFetchActions) { + console.debug(`[RECONNECT] Fetching report actions for report ${report.reportID}`); fetchActions(report.reportID); } }); diff --git a/webpack.common.js b/webpack.common.js index 979dcb1c50d0..578f7a8e1411 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -48,7 +48,7 @@ module.exports = { loader: 'eslint-loader', exclude: /node_modules|\.native.js$/, options: { - cache: true, + cache: false, emitWarning: true, }, },