Skip to content

Commit

Permalink
Fixed linter complaints
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Alfonsi <[email protected]>
  • Loading branch information
Peter Alfonsi committed Feb 6, 2024
1 parent 76b725e commit cd32946
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions osbenchmark/workload/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -1086,9 +1086,9 @@ def on_after_load_workload(self, input_workload, **kwargs):
op_type = workload.OperationType.from_hyphenated_string(leaf_task.operation.type)
except KeyError:
op_type = None
self.logger.warn(
f"QueryRandomizerWorkloadProcessor found operation {leaf_task.operation.name} in default schedule"
f" with type {leaf_task.operation.type}, which couldn't be converted to a known OperationType")
self.logger.info(
"Found operation %s in default schedule with type %s, which couldn't be converted to a known OperationType",
leaf_task.operation.name, leaf_task.operation.type)
if op_type == workload.OperationType.Search:
op_name = leaf_task.operation.name
param_source_name = op_name + "-randomized"
Expand Down

0 comments on commit cd32946

Please sign in to comment.