From 797eb860864bc8b8b08943bfea57733bffc8442e Mon Sep 17 00:00:00 2001
From: Xiao Gui <xgui3783@gmail.com>
Date: Mon, 18 May 2020 18:58:56 +0200
Subject: [PATCH] fix cb signature

---
 functions/datasets/datasets.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/functions/datasets/datasets.js b/functions/datasets/datasets.js
index e4c4b522b..2827756dc 100644
--- a/functions/datasets/datasets.js
+++ b/functions/datasets/datasets.js
@@ -18,14 +18,14 @@ exports.handler = (ev, ctx, cb) => {
   const [ _, templateName, parcellationName ] = re
   if (CACHED_DATASET_URL) {
     cb(null, {
-      status: 302,
+      statusCode: 302,
       headers: {
         'Location': CACHED_DATASET_URL
       }
     })
   } else {
     return cb(null, {
-      status: 200,
+      statusCode: 200,
       body: '[]',
       headers: {
         'content-type': 'application/json'
-- 
GitLab