Skip to content

Commit

Permalink
Narrow down host's subscription status check (#17378)
Browse files Browse the repository at this point in the history
  • Loading branch information
vsedmik authored Jan 17, 2025
1 parent 9168b12 commit ce06066
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 @@ -206,7 +206,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 ce06066

Please sign in to comment.