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

Fix multiple files upload in the same time with tempfile handler. #116

Merged
merged 5 commits into from
Feb 8, 2019

Commits on Feb 6, 2019

  1. Update tempFileHandler.js

    Fix multiple files upload in the same time with temp files handler.
    RomanBurunkov committed Feb 6, 2019
    Configuration menu
    Copy the full SHA
    272a753 View commit details
    Browse the repository at this point in the history
  2. Update processMultipart.js

    Fix multiple file upload in the same time
    RomanBurunkov committed Feb 6, 2019
    Configuration menu
    Copy the full SHA
    42050cb View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2019

  1. Fixes dir value

    Fix dir value expression, which probable came from some old version:
      const dir = options.tempFileDir || process.cwd() + '/tmp/';
    insted of
      const dir = __dirname + (options.tempFileDir || '/tmp/');
    RomanBurunkov committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    c11471c View commit details
    Browse the repository at this point in the history
  2. Update tempFileHandler.js

    Use path module to deal with paths to temp directory and temp files.
    RomanBurunkov committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    d864fe1 View commit details
    Browse the repository at this point in the history
  3. Update README.md

    Change description about necessary trailing slashed in temporary files path.
    RomanBurunkov committed Feb 7, 2019
    Configuration menu
    Copy the full SHA
    9621857 View commit details
    Browse the repository at this point in the history