Skip to content

fix(gatsby-plugin-sharp): create job before async-queue processing #14731

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

Merged
merged 1 commit into from
Jun 12, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions packages/gatsby-plugin-sharp/src/scheduler.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,15 @@ exports.scheduleJob = async (
})

if (!isQueued) {
// Create image job
boundActionCreators.createJob(
{
id: `processing image ${job.inputPath}`,
imagesCount: 1,
},
{ name: `gatsby-plugin-sharp` }
)

q.push(cb => {
runJobs(
inputFileKey,
Expand Down Expand Up @@ -86,10 +95,12 @@ function runJobs(

// Delete the input key from the toProcess list so more jobs can be queued.
delete toProcess[inputFileKey]
boundActionCreators.createJob(

// Update job info
boundActionCreators.setJob(
{
id: `processing image ${job.inputPath}`,
imagesCount: _.values(toProcess[inputFileKey]).length,
imagesCount: jobs.length,
},
{ name: `gatsby-plugin-sharp` }
)
Expand Down