question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Why the `process` method in `server` was called only twice

See original GitHub issue

Summary

The process method in option server will only be called twice.

image

As you can see, I’ve selected couple of images (more than 2). But only two of them were successfully uploaded (trigger process method).

How to reproduce

Here is my code. I am trying to upload to S3.

<!-- template -->
<template>
  <div id="app">

    <!-- full configuration docs is here -->
    <!-- https://pqina.nl/filepond/docs/patterns/api/filepond-instance/ -->
    <file-pond
      name="test"
      ref="pond"
      label-idle="Drop files here..."
      allow-multiple="true"
      accepted-file-types="image/jpeg, image/png"
      :server="server"
      :instant-upload="false"
      v-bind:files="myFiles"
      :beforeAddFile="beforeAddFile"
      v-on:init="handleFilePondInit"
    />
  </div>
</template>
// server 
  data() {
    return {
      S3_SDK_wrapper,
      myFiles: [],

      // this is an option of filepond, see https://pqina.nl/filepond/docs/patterns/api/server/
      server: {
        process: this.process
      }
    };
  },
// process method, defined in the component's `methods`
process(fieldName, file, metadata, load, error, progress, abort) {
      // fieldName is the name of the input field
      // file is the actual file object to send
      console.count("called",file.name);
      const uploadParams = {
           ...
      };

      let request = this.S3_SDK_wrapper.S3.upload(uploadParams, {
        connectionTimeout: 10 * 60 * 1000, // 10 mins
        httpOptions: { timeout: 10 * 60 * 1000 } // 10 mins
      });

      request.on("httpUploadProgress", function(e) {
        console.log(e.loaded / e.total);
        progress(true, e.loaded, e.total);
      });

      
      request.send(async (err, res) => {
        console.log("??");
      });

      // Should expose an abort method so the request can be cancelled
      return {
        abort: () => {
          // This function is entered if the user has tapped the cancel button
          request.abort();

          // Let FilePond know the request has been cancelled
          abort();
        }
      };
    },

Expected behaviour

All of them will be uploaded.

Additional information

The console log is in below:

image

Environment Version
OS Windows
Device Desktop
Browser Chrome 73.036

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:6

github_iconTop GitHub Comments

1reaction
theJiawencommented, May 7, 2019

OK, simply drag a directory to it. I was thinking the whole directory is going to be displayed as a directory. (so it won’t be slow when there are hundreds of files inside). Anyway, thanks for your great job!

0reactions
theJiawencommented, May 7, 2019

And besides that, how do I upload a directory? I’ve read the docs and did not found it. Thanks 😃

Read more comments on GitHub >

github_iconTop Results From Across the Web

Method called twice in same moment - Stack Overflow
The idea behind the lock is to make sure only one thread is working within the critical section, in your edit this is...
Read more >
Stored procedure called once, but executed twice.
I'm using System.Data.SqlClient.SqlCommand.ExecuteNonQuery() to execute a stored procedure in SQL Server 2012. From my application log, ...
Read more >
Webservice method is getting called multiple times.
Issue: whenever the Integration method is called from the consuming application it is observed that the below method is getting called ...
Read more >
Method called once, executed twice - help - Meteor forums
When I call this method from the client, it is executed once on client and twice on server (with this.userId to null the...
Read more >
Solved: If you have two c.server.updates inside one functi...
update() calls internally $http with the reference on $scope.data (c.data) as a parameter. The method $http processes the send request not immediately. Instead ......
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found