Closed (works as designed)
Project:
Feeds
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
11 Jan 2013 at 16:30 UTC
Updated:
30 May 2013 at 12:50 UTC
I have configured a Feeds Import for importing drupal nodes (through CVSParser).
Two different users (different browser or pc) use the same importer but they specifies different files.
The two users click on submit concurrently.
I have that only one file is imported.
In function "public function parse(FeedsImportBatch $batch, FeedsSource $source)" of "class FeedsCSVParser extends FeedsParser", I inserted code for print of the value dsm($batch->getFilePath()); and then I discovered that two different browsers show the same file even if the two users have uploaded different files.
why what happens?
two users can not simultaneously use the same importer at the same time?
Comments
Comment #1
twistor commentedComment #2
twistor commentedWhat fetcher are you using?
Comment #3
twistor commentedThis is indeed a problem, but it's not really fixable in the current design. The problem is that a source can only have one batch at a time, as well as one file.
The way to work around this is to attach the importer to a content type and point each user at a different node.
Comment #4
mauriziogiglio commentedMany thanks