You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by si...@apache.org on 2018/10/11 15:17:22 UTC

[pulsar] branch master updated: fix classname flag in python function example (#2766)

This is an automated email from the ASF dual-hosted git repository.

sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 04bd8bd  fix classname flag in python function example (#2766)
04bd8bd is described below

commit 04bd8bd26fb75abb4ef426a904a8321b39087989
Author: cckellogg <cc...@gmail.com>
AuthorDate: Thu Oct 11 08:17:17 2018 -0700

    fix classname flag in python function example (#2766)
---
 site2/docs/functions-quickstart.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/site2/docs/functions-quickstart.md b/site2/docs/functions-quickstart.md
index 3523216..26de59f 100644
--- a/site2/docs/functions-quickstart.md
+++ b/site2/docs/functions-quickstart.md
@@ -235,7 +235,7 @@ Here, the `process` method defines the processing logic of the Pulsar Function.
 ```bash
 $ bin/pulsar-admin functions create \
   --py reverse.py \
-  --class-name reverse \
+  --classname reverse \
   --inputs persistent://public/default/backwards \
   --output persistent://public/default/forwards \
   --tenant public \