diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-01-05 19:50:29 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-12-06 11:07:14 +0100 |
commit | c5dd6287212378d91706d36aa7e483eb69b807f9 (patch) | |
tree | e581c5cc818bd009f44e4846f98de4634d67de91 | |
parent | d38cd600a7af44c4ea8c97042eef287c6dd84a86 (diff) | |
download | bugzilla-c5dd6287212378d91706d36aa7e483eb69b807f9.tar.gz bugzilla-c5dd6287212378d91706d36aa7e483eb69b807f9.tar.xz |
WIP: disable broken requirements check in migration class
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | Bugzilla/Migrate.pm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Bugzilla/Migrate.pm b/Bugzilla/Migrate.pm index e52e1ea87..c4c5eee93 100644 --- a/Bugzilla/Migrate.pm +++ b/Bugzilla/Migrate.pm @@ -282,8 +282,11 @@ sub bugs { sub check_requirements { return; my $self = shift; - my $missing - = Bugzilla::Install::Requirements::_check_missing($self->REQUIRED_MODULES, 1); + + # FIXME: This is broken. the function that is called doesn't exist any more + # and I don't see an apparent replacement to use here. doesn't matter much + # for debugging so just disable it for now + return; my %results = ( apache => [], pass => @$missing ? 0 : 1, |