You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2019/05/20 02:23:52 UTC

[GitHub] [pulsar] wolfstudy opened a new pull request #4310: fix functions default value of processing guarantees

wolfstudy opened a new pull request #4310: fix functions default value of processing guarantees
URL: https://github.com/apache/pulsar/pull/4310
 
 
   Signed-off-by: xiaolong.ran <ra...@gmail.com>
   
   ### Modifications
   
   In `Function.proto`
   
   ```
   enum ProcessingGuarantees {
       ATLEAST_ONCE = 0; // [default value]
       ATMOST_ONCE = 1;
       EFFECTIVELY_ONCE = 2;
   }
   ```
   
   We use `at-least-once` as the default value for processing guarantees, but in the official documentation, the default value for processing guarantees is `at-most-once`.
   
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services