Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:jasonrbriggs/stomp.py into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason R Briggs committed Apr 12, 2024
2 parents ff050c9 + 257bf8f commit b206beb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ stomp = "stomp.__main__:main"
[tool.poetry_bumpversion.file."stomp/__init__.py"]

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
2 changes: 1 addition & 1 deletion stomp/transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def __read(self):
logging.debug("socket read error", exc_info=logging.verbose)
c = b""
if c is None or len(c) == 0:
logging.debug("nothing received, raising CCE")
logging.debug("nothing received, raising ConnectionClosedException")
raise exception.ConnectionClosedException()
if self.__is_eol(c) and not self.__recvbuf and not fastbuf.tell():
#
Expand Down

0 comments on commit b206beb

Please sign in to comment.