Closed (fixed)
Project:
Migrate
Version:
7.x-2.5
Component:
migrate_ui
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
9 May 2013 at 06:01 UTC
Updated:
30 May 2013 at 15:41 UTC
The unimported count in the Migrate UI is defined as:
$unimported = $total - $processed;
where $processed is the total number of rows the migration has run on, not the total actually imported.
Should this be:
$unimported = $total - $imported;
Or should the label of that field be "Unprocessed", or perhaps showing both would be helpful, for half-run migrations?
Comments
Comment #1
mikeryanMaybe changing the label to Unprocessed would make it clearer.
Comment #2
mikeryanOK, now using "Unprocessed" so it's clearer.
Comment #3
xtfer commentedThanks.
I have a patch which shows both. I'll open a new issue for it when I get a moment.
Comment #4
mikeryanI'd rather not add another column to the UI, particularly one that would be redundant 90% of the time.