11
11
from pynumaflow .proto .sourcer import source_pb2
12
12
from pynumaflow .proto .sourcer import source_pb2_grpc
13
13
from pynumaflow .types import NumaflowServicerContext
14
- from pynumaflow ._constants import _LOGGER , STREAM_EOF , ERR_SOURCE_EXCEPTION
14
+ from pynumaflow ._constants import _LOGGER , STREAM_EOF , ERR_UDF_EXCEPTION_STRING
15
15
16
16
17
17
def _create_read_handshake_response ():
@@ -119,7 +119,7 @@ async def ReadFn(
119
119
yield _create_eot_response ()
120
120
except BaseException as err :
121
121
_LOGGER .critical ("User-Defined Source ReadFn error" , exc_info = True )
122
- await handle_async_error (context , err , ERR_SOURCE_EXCEPTION )
122
+ await handle_async_error (context , err , ERR_UDF_EXCEPTION_STRING )
123
123
124
124
async def __invoke_read (self , req , niter ):
125
125
"""Invoke the read handler and manage the iterator."""
@@ -165,7 +165,7 @@ async def AckFn(
165
165
yield _create_ack_response ()
166
166
except BaseException as err :
167
167
_LOGGER .critical ("User-Defined Source AckFn error" , exc_info = True )
168
- await handle_async_error (context , err , ERR_SOURCE_EXCEPTION )
168
+ await handle_async_error (context , err , ERR_UDF_EXCEPTION_STRING )
169
169
170
170
async def IsReady (
171
171
self , request : _empty_pb2 .Empty , context : NumaflowServicerContext
@@ -187,7 +187,7 @@ async def PendingFn(
187
187
count = await self .__source_pending_handler ()
188
188
except BaseException as err :
189
189
_LOGGER .critical ("PendingFn Error" , exc_info = True )
190
- await handle_async_error (context , err , ERR_SOURCE_EXCEPTION )
190
+ await handle_async_error (context , err , ERR_UDF_EXCEPTION_STRING )
191
191
return
192
192
resp = source_pb2 .PendingResponse .Result (count = count .count )
193
193
return source_pb2 .PendingResponse (result = resp )
@@ -202,7 +202,7 @@ async def PartitionsFn(
202
202
partitions = await self .__source_partitions_handler ()
203
203
except BaseException as err :
204
204
_LOGGER .critical ("PartitionsFn Error" , exc_info = True )
205
- await handle_async_error (context , err , ERR_SOURCE_EXCEPTION )
205
+ await handle_async_error (context , err , ERR_UDF_EXCEPTION_STRING )
206
206
return
207
207
resp = source_pb2 .PartitionsResponse .Result (partitions = partitions .partitions )
208
208
return source_pb2 .PartitionsResponse (result = resp )
0 commit comments