diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-01-05 19:50:29 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-01-05 19:50:29 +0100 |
commit | 6a00cccd2d23a710727fb7df24de0cf06b920432 (patch) | |
tree | 97d3ccd6bda5b16a799c11169a53c3a2ac22067b | |
parent | 930fc8343825b942228b5c57d279338ffcd6d8c0 (diff) | |
download | bugzilla-6a00cccd2d23a710727fb7df24de0cf06b920432.tar.gz bugzilla-6a00cccd2d23a710727fb7df24de0cf06b920432.tar.xz |
WIP: disable broken requirements check in migration classflyspray
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | Bugzilla/Migrate.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Bugzilla/Migrate.pm b/Bugzilla/Migrate.pm index 030369f08..fa07248f6 100644 --- a/Bugzilla/Migrate.pm +++ b/Bugzilla/Migrate.pm @@ -295,6 +295,10 @@ sub bugs { sub check_requirements { my $self = shift; + # 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 $missing = Bugzilla::Install::Requirements::_check_missing( $self->REQUIRED_MODULES, 1); my %results = ( |