Skip to content

Commit b82e25a

Browse files
committed
fix typos
1 parent b351715 commit b82e25a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

taskiq_pipelines/middleware.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async def post_save( # noqa: PLR0911
3838
return
3939
current_step_num = int(message.labels[CURRENT_STEP])
4040
if PIPELINE_DATA not in message.labels:
41-
logger.warning("Pipline data not found. Execution flow is broken.")
41+
logger.warning("Pipeline data not found. Execution flow is broken.")
4242
return
4343
pipeline_data = message.labels[PIPELINE_DATA]
4444
parsed_data = self.broker.serializer.loadb(pipeline_data)
@@ -47,7 +47,7 @@ async def post_save( # noqa: PLR0911
4747
parsed_data,
4848
)
4949
except ValueError as err:
50-
logger.warning("Cannot parse pipline_data: %s", err, exc_info=True)
50+
logger.warning("Cannot parse pipeline_data: %s", err, exc_info=True)
5151
return
5252
if current_step_num + 1 >= len(steps_data):
5353
logger.debug("Pipeline is completed.")
@@ -99,7 +99,7 @@ async def on_error(
9999
return
100100
current_step_num = int(message.labels[CURRENT_STEP])
101101
if PIPELINE_DATA not in message.labels:
102-
logger.warning("Pipline data not found. Execution flow is broken.")
102+
logger.warning("Pipeline data not found. Execution flow is broken.")
103103
return
104104
pipe_data = message.labels[PIPELINE_DATA]
105105
try:

0 commit comments

Comments
 (0)