Skip to content

Commit

Permalink
Disable RecordingsSameNameDifferentArtistsSameName
Browse files Browse the repository at this point in the history
This causes daily.sh to hang on RunReports.pl, and there's no obvious
way to optimize it yet.
  • Loading branch information
mwiencek committed May 21, 2020
1 parent 5ae0316 commit 5c30a1b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ use Moose;
with 'MusicBrainz::Server::Report::RecordingReport',
'MusicBrainz::Server::Report::FilterForEditor::RecordingID';

# FIXME: This report has been disabled since the upgrade to PG 12, because
# its query can no longer execute in under 5 minutes in production.

sub query {
"
SELECT
Expand Down
3 changes: 1 addition & 2 deletions lib/MusicBrainz/Server/ReportFactory.pm
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ use MusicBrainz::Server::PagedReport;
RecordingsWithoutVALink
RecordingsWithEarliestReleaseRelationships
RecordingsWithVaryingTrackLengths
RecordingsSameNameDifferentArtistsSameName
RecordingTrackDifferentName
ReleasedTooEarly
ReleaseGroupsWithoutVACredit
Expand Down Expand Up @@ -146,7 +145,7 @@ use MusicBrainz::Server::Report::RecordingsWithoutVACredit;
use MusicBrainz::Server::Report::RecordingsWithoutVALink;
use MusicBrainz::Server::Report::RecordingsWithEarliestReleaseRelationships;
use MusicBrainz::Server::Report::RecordingsWithVaryingTrackLengths;
use MusicBrainz::Server::Report::RecordingsSameNameDifferentArtistsSameName;
#use MusicBrainz::Server::Report::RecordingsSameNameDifferentArtistsSameName;
use MusicBrainz::Server::Report::RecordingTrackDifferentName;
use MusicBrainz::Server::Report::ReleasedTooEarly;
use MusicBrainz::Server::Report::ReleaseGroupsWithoutVACredit;
Expand Down
4 changes: 2 additions & 2 deletions root/report/ReportsIndex.js
Original file line number Diff line number Diff line change
Expand Up @@ -449,12 +449,12 @@ const ReportsIndex = ({$c}: {$c: CatalystContextT}) => (
to VA`)}
</a>
</li>
<li>
{/*<li>
<a href="/report/RecordingsSameNameDifferentArtistsSameName">
{l(`Recordings with the same name by different artists
with the same name`)}
</a>
</li>
</li>*/}
<li>
<a href="/report/RecordingTrackDifferentName">
{l('Recordings with a different name than their only track')}
Expand Down

0 comments on commit 5c30a1b

Please sign in to comment.