Skip to content

Commit

Permalink
version 3.27.1
Browse files Browse the repository at this point in the history
  • Loading branch information
seratch committed Feb 28, 2024
1 parent cd78ab4 commit e78bf56
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,9 @@ <h1 class="title">Module <code>slack_sdk.socket_mode.websocket_client</code></h1
self.logger.info(&#34;Stopped receiving messages from a connection&#34;)
except Exception as e:
self.logger.exception(f&#34;Failed to start or stop the current session: {e}&#34;)
# To let the monitoring job detect the connection issue, closing this session
if self.current_session is not None:
self.current_session.close()

def _monitor_current_session(self):
if self.current_app_monitor_started:
Expand Down Expand Up @@ -560,6 +563,9 @@ <h2 class="section-title" id="header-classes">Classes</h2>
self.logger.info(&#34;Stopped receiving messages from a connection&#34;)
except Exception as e:
self.logger.exception(f&#34;Failed to start or stop the current session: {e}&#34;)
# To let the monitoring job detect the connection issue, closing this session
if self.current_session is not None:
self.current_session.close()

def _monitor_current_session(self):
if self.current_app_monitor_started:
Expand Down
2 changes: 1 addition & 1 deletion docs/api-docs/slack_sdk/version.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h1 class="title">Module <code>slack_sdk.version</code></h1>
<span>Expand source code</span>
</summary>
<pre><code class="python">&#34;&#34;&#34;Check the latest version at https://pypi.org/project/slack-sdk/&#34;&#34;&#34;
__version__ = &#34;3.27.0&#34;</code></pre>
__version__ = &#34;3.27.1&#34;</code></pre>
</details>
</section>
<section>
Expand Down
2 changes: 1 addition & 1 deletion slack_sdk/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Check the latest version at https://pypi.org/project/slack-sdk/"""
__version__ = "3.27.0"
__version__ = "3.27.1"

0 comments on commit e78bf56

Please sign in to comment.