<p>Josh Soref has uploaded this change for <strong>review</strong>.</p><p><a href="https://gerrit.asterisk.org/c/asterisk/+/17219">View Change</a></p><pre style="font-family: monospace,monospace; white-space: pre-wrap;">spelling: subscription<br><br>Change-Id: I26d46cbf3b587d817dbb7d1873474a45d2a02207<br>---<br>M CHANGES<br>M include/asterisk/stasis.h<br>M main/cdr.c<br>M main/stasis.c<br>M res/res_pjsip_pubsub.c<br>5 files changed, 7 insertions(+), 7 deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">git pull ssh://gerrit.asterisk.org:29418/asterisk refs/changes/19/17219/1</pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;"><span>diff --git a/CHANGES b/CHANGES</span><br><span>index ef087bb..1980a1e 100644</span><br><span>--- a/CHANGES</span><br><span>+++ b/CHANGES</span><br><span>@@ -1576,7 +1576,7 @@</span><br><span>    is not a hostname, the saved transport will be used and the 'x-ast-txp'</span><br><span>    parameter stripped from the outgoing packet.  To facilitate recreation of</span><br><span>    subscriptions on asterisk restart, a new column 'contact_uri' needed to be</span><br><span style="color: hsl(0, 100%, 40%);">-   added to the ps_subcsription_persistence table.  Since new columns were</span><br><span style="color: hsl(120, 100%, 40%);">+   added to the ps_subscription_persistence table.  Since new columns were</span><br><span>    added to both transport and subscription_persistence, an alembic upgrade</span><br><span>    should be run to bring the database tables up to date.</span><br><span> </span><br><span>diff --git a/include/asterisk/stasis.h b/include/asterisk/stasis.h</span><br><span>index 990895a..b496743 100644</span><br><span>--- a/include/asterisk/stasis.h</span><br><span>+++ b/include/asterisk/stasis.h</span><br><span>@@ -598,7 +598,7 @@</span><br><span>  * The caller of stasis_publish_sync will block until the specified</span><br><span>  * subscriber completes handling of the message.</span><br><span>  *</span><br><span style="color: hsl(0, 100%, 40%);">- * All other subscribers to the topic the \ref stasis_subpscription</span><br><span style="color: hsl(120, 100%, 40%);">+ * All other subscribers to the topic the \ref stasis_subscription</span><br><span>  * is subscribed to are also delivered the message; this delivery however</span><br><span>  * happens asynchronously.</span><br><span>  *</span><br><span>diff --git a/main/cdr.c b/main/cdr.c</span><br><span>index 7809cbc..41306c6 100644</span><br><span>--- a/main/cdr.c</span><br><span>+++ b/main/cdr.c</span><br><span>@@ -4309,7 +4309,7 @@</span><br><span> }</span><br><span> </span><br><span> /*!</span><br><span style="color: hsl(0, 100%, 40%);">- * \brief Create the Stasis subcriptions for CDRs</span><br><span style="color: hsl(120, 100%, 40%);">+ * \brief Create the Stasis subscriptions for CDRs</span><br><span>  */</span><br><span> static int create_subscriptions(void)</span><br><span> {</span><br><span>diff --git a/main/stasis.c b/main/stasis.c</span><br><span>index b825f39..75fc9bc 100644</span><br><span>--- a/main/stasis.c</span><br><span>+++ b/main/stasis.c</span><br><span>@@ -242,7 +242,7 @@</span><br><span>  * subscriptions need the topics to unsubscribe and check subscription status.</span><br><span>  *</span><br><span>  * The cycle is broken by stasis_unsubscribe(). The unsubscribe will remove the</span><br><span style="color: hsl(0, 100%, 40%);">- * topic's reference to a subscription. When the subcription is destroyed, it</span><br><span style="color: hsl(120, 100%, 40%);">+ * topic's reference to a subscription. When the subscription is destroyed, it</span><br><span>  * will remove its reference to the topic.</span><br><span>  *</span><br><span>  * This means that until a subscription has be explicitly unsubscribed, it will</span><br><span>@@ -2631,7 +2631,7 @@</span><br><span> </span><br><span>        subscription_stats = ao2_global_obj_ref(subscription_statistics);</span><br><span>    if (!subscription_stats) {</span><br><span style="color: hsl(0, 100%, 40%);">-              ast_cli(a->fd, "Could not fetch subcription_statistics container\n");</span><br><span style="color: hsl(120, 100%, 40%);">+            ast_cli(a->fd, "Could not fetch subscription_statistics container\n");</span><br><span>          return CLI_FAILURE;</span><br><span>  }</span><br><span> </span><br><span>@@ -3162,7 +3162,7 @@</span><br><span> </span><br><span> #ifdef AST_DEVMODE</span><br><span>      /* Statistics information is stored separately so that we don't alter or interrupt the lifetime of the underlying</span><br><span style="color: hsl(0, 100%, 40%);">-    * topic or subscripton.</span><br><span style="color: hsl(120, 100%, 40%);">+       * topic or subscription.</span><br><span>     */</span><br><span>  subscription_stats = ao2_container_alloc_hash(AO2_ALLOC_OPT_LOCK_MUTEX, 0, SUBSCRIPTION_STATISTICS_BUCKETS,</span><br><span>          subscription_statistics_hash, 0, subscription_statistics_cmp);</span><br><span>diff --git a/res/res_pjsip_pubsub.c b/res/res_pjsip_pubsub.c</span><br><span>index a696ccc..aa5dfa9 100644</span><br><span>--- a/res/res_pjsip_pubsub.c</span><br><span>+++ b/res/res_pjsip_pubsub.c</span><br><span>@@ -1889,7 +1889,7 @@</span><br><span> </span><br><span>      contact = ast_sip_location_retrieve_contact_from_aor_list(endpoint->aors);</span><br><span>        if (!contact || ast_strlen_zero(contact->uri)) {</span><br><span style="color: hsl(0, 100%, 40%);">-             ast_log(LOG_WARNING, "No contacts configured for endpoint %s. Unable to create SIP subsription\n",</span><br><span style="color: hsl(120, 100%, 40%);">+          ast_log(LOG_WARNING, "No contacts configured for endpoint %s. Unable to create SIP subscription\n",</span><br><span>                                ast_sorcery_object_get_id(endpoint));</span><br><span>                ao2_ref(sub_tree, -1);</span><br><span>               ao2_cleanup(contact);</span><br><span></span><br></pre><p>To view, visit <a href="https://gerrit.asterisk.org/c/asterisk/+/17219">change 17219</a>. To unsubscribe, or for help writing mail filters, visit <a href="https://gerrit.asterisk.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.asterisk.org/c/asterisk/+/17219"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: asterisk </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-Change-Id: I26d46cbf3b587d817dbb7d1873474a45d2a02207 </div>
<div style="display:none"> Gerrit-Change-Number: 17219 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: Josh Soref <jsoref@gmail.com> </div>
<div style="display:none"> Gerrit-CC: Friendly Automation </div>
<div style="display:none"> Gerrit-MessageType: newchange </div>