Skip to content

Commit

Permalink
fix: increase default memory to 512
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Oct 17, 2019
1 parent c5ab512 commit 5eae46d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/serverless-apollo-service/serverless.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
const { join } = require("path");
const fs = require("fs-extra");
const { transform } = require("@babel/core");
const prettier = require("prettier");
const { Component } = require("@serverless/core");
const webpack = require("webpack");
const execa = require("execa");
const { trackComponent } = require("@webiny/tracking");
const loadJson = require("load-json-file");
const writeJson = require("write-json-file");
const { transform } = require("@babel/core");
const { Component } = require("@serverless/core");
const { trackComponent } = require("@webiny/tracking");

const defaultDependencies = ["date-fns", "mongodb", "@webiny/api", "@webiny/api-security", "babel-loader"];

Expand All @@ -30,7 +30,7 @@ class ApolloService extends Component {
plugins = [],
env = {},
database,
memory = 128,
memory = 512,
timeout = 10,
description,
endpointTypes = ["REGIONAL"],
Expand Down

0 comments on commit 5eae46d

Please sign in to comment.