Skip to content

Commit 92ffc90

Browse files
show register ms for interactive udfs only
1 parent fe59b2d commit 92ffc90

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

singlestoredb/apps/_python_udfs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ async def run_udf_app(
6161
asyncio.create_task(_running_server.serve())
6262
await _running_server.wait_for_startup()
6363

64-
print(f'Python UDF registered at {base_url}')
64+
if app_config.running_interactively:
65+
print('started udf server')
6566

6667
return UdfConnectionInfo(base_url, app.get_function_info())
6768

0 commit comments

Comments
 (0)