From 24f349ce4b634e5445706a3bc4860741c8f40281 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Fri, 11 May 2018 17:28:19 +0200 Subject: Flyspray: misc clean + debug output Signed-off-by: Florian Pritz --- Bugzilla/Migrate/Flyspray.pm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Bugzilla/Migrate/Flyspray.pm b/Bugzilla/Migrate/Flyspray.pm index 0b2997536..abce3ae12 100644 --- a/Bugzilla/Migrate/Flyspray.pm +++ b/Bugzilla/Migrate/Flyspray.pm @@ -318,6 +318,7 @@ sub _read_bugs { my @result; while (my $row = $sth->fetchrow_hashref()) { + $self->debug("Processing bug " . $row->{task_id}, 2); my $bug = { short_desc => $row->{item_summary}, product => $self->{map_project_id_to_name}->{$row->{project_id}}, @@ -372,8 +373,6 @@ sub _read_bugs { } - my $comments = {}; - # fetch comments my $comments_sth = $self->{dbh}->prepare_cached(" SELECT comment_id, user_id, date_added, comment_text @@ -386,7 +385,6 @@ sub _read_bugs { thetext => $comment->{comment_text}, }; push @{$bug->{comments}}, $comment_item; - $comments->{$comment->{comment_id}} = $comment_item; } # get history @@ -483,7 +481,7 @@ sub _read_bugs { # optional for now: CC changes, assignee changes, milestone/version changes } - # TODO get attachments + # get attachments my $attachments_sth = $self->{dbh}->prepare_cached(" SELECT task_id, orig_name, file_name, file_desc, file_type, file_size, added_by, date_added FROM $fsdb.${fsprfx}attachments -- cgit v1.2.3-24-g4f1b