From 1ea6b6e99d591cd9b6c70a70cd9e073fc3cfe779 Mon Sep 17 00:00:00 2001 From: Bryce Date: Mon, 14 Feb 2022 13:19:42 -0500 Subject: [PATCH] FIXED: Document post failing because expire parameter is string. (#366) Specifically fixes docker example that uses memcached. Co-authored-by: Bryce Leo --- docker-entrypoint.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docker-entrypoint.js b/docker-entrypoint.js index 5afff14..9454484 100644 --- a/docker-entrypoint.js +++ b/docker-entrypoint.js @@ -33,13 +33,13 @@ const { const config = { host: HOST, - port: PORT, + port: Number(PORT), - keyLength: KEY_LENGTH, + keyLength: Number(KEY_LENGTH), - maxLength: MAX_LENGTH, + maxLength: Number(MAX_LENGTH), - staticMaxAge: STATIC_MAX_AGE, + staticMaxAge: Number(STATIC_MAX_AGE), recompressStaticAssets: RECOMPRESS_STATIC_ASSETS, @@ -86,8 +86,8 @@ const config = { storage: { type: STORAGE_TYPE, host: STORAGE_HOST, - port: STORAGE_PORT, - expire: STORAGE_EXPIRE_SECONDS, + port: Number(STORAGE_PORT), + expire: Number(STORAGE_EXPIRE_SECONDS), bucket: STORAGE_AWS_BUCKET, region: STORAGE_AWS_REGION, connectionUrl: `postgres://${STORAGE_USERNAME}:${STORAGE_PASSWORD}@${STORAGE_HOST}:${STORAGE_PORT}/${STORAGE_DB}`,