parent
7162c8e660
commit
54f6b8f9ae
1 changed files with 2 additions and 2 deletions
|
|
@ -1032,7 +1032,7 @@ class State():
|
|||
)
|
||||
|
||||
# Check for minor errors
|
||||
if not check_attributes(self.destination, only_blocking=False):
|
||||
if not check_attributes(self.destination, only_blocking=True):
|
||||
std.print_warning(
|
||||
f'Attribute error(s) detected for: {self.destination.path}',
|
||||
)
|
||||
|
|
@ -1602,7 +1602,7 @@ def check_destination_health(destination):
|
|||
result = 'Critical error(s) detected for: {destination.path}'
|
||||
|
||||
# Check for minor errors
|
||||
if not check_attributes(destination, only_blocking=False):
|
||||
if not check_attributes(destination, only_blocking=True):
|
||||
result = f'Attribute error(s) detected for: {destination.path}'
|
||||
|
||||
# Done
|
||||
|
|
|
|||
Loading…
Reference in a new issue