Skip to content

Commit

Permalink
EES-4336 temporarily remove DataBlockQuerySizeController which produc…
Browse files Browse the repository at this point in the history
…ed the data block size report until we need to use it.
  • Loading branch information
benoutram committed Dec 17, 2024
1 parent dee7e0c commit 5f52222
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 132 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,6 @@ Task<bool> IsLatestReleaseVersion(
Guid releaseVersionId,
CancellationToken cancellationToken = default);

/// <summary>
/// Retrieves the latest published version id's of all releases.
/// </summary>
/// <param name="cancellationToken">A <see cref="CancellationToken"/> to observe while waiting for the task to complete.</param>
/// <returns>A collection of the latest published version id's of all releases.</returns>
// TODO EES-4336 Remove this
Task<List<Guid>> ListLatestPublishedReleaseVersionIds(CancellationToken cancellationToken = default);

/// <summary>
/// Retrieves the latest published release version id's associated with a publication in reverse chronological order.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,6 @@ public async Task<bool> IsLatestReleaseVersion(
cancellationToken: cancellationToken);
}

// TODO EES-4336 Remove this
public async Task<List<Guid>> ListLatestPublishedReleaseVersionIds(CancellationToken cancellationToken = default)
{
return await _contentDbContext.ReleaseVersions.LatestReleaseVersions(publishedOnly: true)
.Select(rv => rv.Id)
.ToListAsync(cancellationToken: cancellationToken);
}

public async Task<List<ReleaseVersion>> ListLatestPublishedReleaseVersions(
Guid publicationId,
CancellationToken cancellationToken = default)
Expand Down

0 comments on commit 5f52222

Please sign in to comment.