You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by mm...@apache.org on 2018/12/05 01:04:43 UTC

[pulsar] branch master updated: Correct instances of 'availble' found (#3124)

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

mmerli 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 322f2c6  Correct instances of 'availble' found (#3124)
322f2c6 is described below

commit 322f2c61429cfa815cc8c93947bc43dda9f4abe1
Author: Grant Wu <gr...@gmail.com>
AuthorDate: Tue Dec 4 20:04:38 2018 -0500

    Correct instances of 'availble' found (#3124)
---
 pulsar-client-cpp/python/pulsar/__init__.py                           | 2 +-
 .../KubernetesSecretsProviderConfigurator.java                        | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pulsar-client-cpp/python/pulsar/__init__.py b/pulsar-client-cpp/python/pulsar/__init__.py
index f8646b2..4a90f57 100644
--- a/pulsar-client-cpp/python/pulsar/__init__.py
+++ b/pulsar-client-cpp/python/pulsar/__init__.py
@@ -824,7 +824,7 @@ class Consumer:
 
         * `timeout_millis`:
           If specified, the receive will raise an exception if a message is not
-          availble within the timeout.
+          available within the timeout.
         """
         if timeout_millis is None:
             return self._consumer.receive()
diff --git a/pulsar-functions/secrets/src/main/java/org/apache/pulsar/functions/secretsproviderconfigurator/KubernetesSecretsProviderConfigurator.java b/pulsar-functions/secrets/src/main/java/org/apache/pulsar/functions/secretsproviderconfigurator/KubernetesSecretsProviderConfigurator.java
index 27b8309..bcccfe4 100644
--- a/pulsar-functions/secrets/src/main/java/org/apache/pulsar/functions/secretsproviderconfigurator/KubernetesSecretsProviderConfigurator.java
+++ b/pulsar-functions/secrets/src/main/java/org/apache/pulsar/functions/secretsproviderconfigurator/KubernetesSecretsProviderConfigurator.java
@@ -34,7 +34,7 @@ import java.util.Map;
  * This file defines the SecretsProviderConfigurator that will be used by default for running in Kubernetes.
  * As such this implementation is strictly when workers are configured to use kubernetes runtime.
  * We use kubernetes in built secrets and bind them as environment variables within the function container
- * to ensure that the secrets are availble to the function at runtime. Then we plug in the
+ * to ensure that the secrets are available to the function at runtime. Then we plug in the
  * EnvironmentBasedSecretsConfig as the secrets provider who knows how to read these environment variables
  */
 public class KubernetesSecretsProviderConfigurator implements SecretsProviderConfigurator {
@@ -125,4 +125,4 @@ public class KubernetesSecretsProviderConfigurator implements SecretsProviderCon
             }
         }
     }
-}
\ No newline at end of file
+}