Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add gatsby-parallel-runner package #21733

Closed
wants to merge 11 commits into from
2 changes: 1 addition & 1 deletion packages/gatsby-parallel-runner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gatsby-parallel-runner",
"version": "1.2.1",
"version": "1.2.2",
"description": "Gatsby plugin that allows paralellization of external tasks",
"keywords": [
"gatsby"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class GoogleFunctions {
const config =
googleConfig ||
JSON.parse(fs.readFileSync(process.env.GOOGLE_APPLICATION_CREDENTIALS))
this.subName = `gatsby-sub-${new Date().getTime()}`
this.subName = `gatsby-sub-${Date().now()}`
biilmann marked this conversation as resolved.
Show resolved Hide resolved
this.workerBucket = bucketFor(processorSettings)
this.workerTopic = topicFor(processorSettings)
this.resultBucketName = `event-results-${process.env.TOPIC}`
Expand Down