Skip to content

Commit

Permalink
fix(python): UDFServer in example
Browse files Browse the repository at this point in the history
  • Loading branch information
everpcpc committed Nov 7, 2023
1 parent b17a676 commit 70f049d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions python/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
venv/
*.egg-info/
dist/
__pycache__/
2 changes: 1 addition & 1 deletion python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def wait_concurrent(x):

if __name__ == '__main__':
# create a UDF server listening at '0.0.0.0:8815'
server = UdfServer("0.0.0.0:8815")
server = UDFServer("0.0.0.0:8815")
# add defined functions
server.add_function(split_and_join)
server.add_function(gcd)
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ classifiers = [
description = "Databend UDF Server"
license = { text = "Apache-2.0" }
name = "databend-udf"
version = "0.1.1"
version = "0.1.2"
readme = "README.md"
requires-python = ">=3.7"
dependencies = ["pyarrow"]
Expand Down

0 comments on commit 70f049d

Please sign in to comment.