Skip to content

Commit

Permalink
Update help msg of sqlite_metadata option as not-operational
Browse files Browse the repository at this point in the history
sqlite_metadata option was not removed from serializers yet to avoid
breaking the API. It was marked as not-operational until we can
guarantee it's safe to completly remove it.

[noissue]
  • Loading branch information
pedro-psb committed Nov 27, 2023
1 parent 770302f commit 4ce3443
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pulp_rpm/app/serializers/repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ class RpmRepositorySerializer(RepositorySerializer):
default=False,
required=False,
help_text=_(
"DEPRECATED: An option specifying whether Pulp should generate SQLite metadata."
"REMOVED: An option specifying whether Pulp should generate SQLite metadata. "
"Not operation since pulp_rpm 3.25.0 release"
),
)
repo_config = serializers.JSONField(
Expand Down Expand Up @@ -289,7 +290,8 @@ class RpmPublicationSerializer(PublicationSerializer):
default=False,
required=False,
help_text=_(
"DEPRECATED: An option specifying whether Pulp should generate SQLite metadata."
"REMOVED: An option specifying whether Pulp should generate SQLite metadata. "
"Not operation since pulp_rpm 3.25.0 release"
),
)
repo_config = serializers.JSONField(
Expand Down

0 comments on commit 4ce3443

Please sign in to comment.