We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e6dce4 commit 7d57e9dCopy full SHA for 7d57e9d
singlestoredb/apps/_python_udfs.py
@@ -15,7 +15,6 @@
15
16
17
async def run_udf_app(
18
- replace_existing: bool,
19
log_level: str = 'error',
20
kill_existing_app_server: bool = True,
21
) -> UdfConnectionInfo:
@@ -57,7 +56,7 @@ async def run_udf_app(
57
56
58
# Register the functions only if the app is running interactively.
59
if app_config.running_interactively:
60
- app.register_functions(replace=replace_existing)
+ app.register_functions(replace=True)
61
62
asyncio.create_task(_running_server.serve())
63
await _running_server.wait_for_startup()
0 commit comments