Skip to content

Commit 8102702

Browse files
committed
Fixes typo in warning message.
Signed-off-by: rlratzel <rratzel@nvidia.com>
1 parent 211f985 commit 8102702

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

benchmarking/runner/sinks/slack_sink.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ def register_benchmark_entry_starting(self, result_dict: dict[str, Any], benchma
448448
if self.live_updates:
449449
if self._parent_message is None:
450450
logger.warning(
451-
"SlackSink: Warning: Ignoring attempt to post an entry starting message without a session summary message. Was iniatialize() called?"
451+
"SlackSink: Warning: Ignoring attempt to post an entry starting message without a session summary message. Was initialize() called?"
452452
)
453453
return
454454
self._parent_message.update_entry(benchmark_entry.name, "▶️ running")
@@ -457,7 +457,7 @@ def register_benchmark_entry_starting(self, result_dict: dict[str, Any], benchma
457457
def register_benchmark_entry_finished(self, result_dict: dict[str, Any], benchmark_entry: Entry) -> None:
458458
if self._parent_message is None:
459459
logger.warning(
460-
"SlackSink: Warning: Ignoring attempt to post an entry finished message without a session summary message. Was iniatialize() called?"
460+
"SlackSink: Warning: Ignoring attempt to post an entry finished message without a session summary message. Was initialize() called?"
461461
)
462462
return
463463
# Use the benchmark_entry to get any entry-specific settings for the Slack report
@@ -478,7 +478,7 @@ def register_benchmark_entry_finished(self, result_dict: dict[str, Any], benchma
478478
def finalize(self) -> None:
479479
if self._parent_message is None:
480480
logger.warning(
481-
"SlackSink: Warning: Ignoring attempt to finalize without a session summary message. Was iniatialize() called?"
481+
"SlackSink: Warning: Ignoring attempt to finalize without a session summary message. Was initialize() called?"
482482
)
483483
return
484484
# Unconditionally posts all unposted messages.

0 commit comments

Comments
 (0)