Skip to content

Commit

Permalink
Narrow down host's subscription status check (#17378)
Browse files Browse the repository at this point in the history
(cherry picked from commit ce06066)
  • Loading branch information
vsedmik authored and web-flow committed Jan 17, 2025
1 parent 314ed4e commit 341afa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robottelo/hosts.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def nailgun_host(self):
@property
def subscribed(self):
"""Boolean representation of a content host's subscription status"""
return 'Status: Unknown' not in self.execute('subscription-manager status').stdout
return 'Overall Status: Unknown' not in self.execute('subscription-manager status').stdout

@property
def identity(self):
Expand Down

0 comments on commit 341afa5

Please sign in to comment.