[jira] [Commented] (QPID-8655) [Broker-J] Dependency updates for version 9.1.x

2023-11-20 Thread ASF GitHub Bot (Jira)


[ 
https://issues.apache.org/jira/browse/QPID-8655?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17788067#comment-17788067
 ] 

ASF GitHub Bot commented on QPID-8655:
--

dakirily opened a new pull request, #228:
URL: https://github.com/apache/qpid-broker-j/pull/228

   This PR addresses 
[QPID-8655](https://issues.apache.org/jira/browse/QPID-8655), updating broker 
dependencies.
   
   Following dependencies are updated:
   
   **runtime dependencies**
   com.fasterxml.jackson.core:jackson-core 2.15.3 => 2.16.0
   com.fasterxml.jackson.core:jackson-databind 2.15.3 => 2.16.0
   org.bouncycastle:bcprov-jdk18on 1.76 => 1.77
   org.bouncycastle:bcpkix-jdk18on 1.76 => 1.77
   
   **test dependencies**
   
   io.netty:netty-buffer 4.1.100.Final => 4.1.101.Final
   io.netty:netty-common 4.1.100.Final => 4.1.101.Final
   io.netty:netty-handler 4.1.100.Final => 4.1.101.Final
   io.netty:netty-transport 4.1.100.Final => 4.1.101.Final
   io.netty:netty-codec-http 4.1.100.Final => 4.1.101.Final
   
   
   **maven plugins**
   none




> [Broker-J] Dependency updates for version 9.1.x
> ---
>
> Key: QPID-8655
> URL: https://issues.apache.org/jira/browse/QPID-8655
> Project: Qpid
>  Issue Type: Improvement
>  Components: Broker-J
>Affects Versions: qpid-java-broker-9.1.0
>Reporter: Daniil Kirilyuk
>Priority: Minor
> Fix For: qpid-java-broker-9.1.1
>
>
> This Jira should serve for broker-j dependency updates for release 9.1.1



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[PR] QPID-8655: [Broker-J] Dependency updates for version 9.1.x [qpid-broker-j]

2023-11-20 Thread via GitHub


dakirily opened a new pull request, #228:
URL: https://github.com/apache/qpid-broker-j/pull/228

   This PR addresses 
[QPID-8655](https://issues.apache.org/jira/browse/QPID-8655), updating broker 
dependencies.
   
   Following dependencies are updated:
   
   **runtime dependencies**
   com.fasterxml.jackson.core:jackson-core 2.15.3 => 2.16.0
   com.fasterxml.jackson.core:jackson-databind 2.15.3 => 2.16.0
   org.bouncycastle:bcprov-jdk18on 1.76 => 1.77
   org.bouncycastle:bcpkix-jdk18on 1.76 => 1.77
   
   **test dependencies**
   
   io.netty:netty-buffer 4.1.100.Final => 4.1.101.Final
   io.netty:netty-common 4.1.100.Final => 4.1.101.Final
   io.netty:netty-handler 4.1.100.Final => 4.1.101.Final
   io.netty:netty-transport 4.1.100.Final => 4.1.101.Final
   io.netty:netty-codec-http 4.1.100.Final => 4.1.101.Final
   
   
   **maven plugins**
   none


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Updated] (PROTON-2776) Exception in IOHandler.on_selectable_expired/update after wakeup from sleep

2023-11-20 Thread Ievgen Popovych (Jira)


 [ 
https://issues.apache.org/jira/browse/PROTON-2776?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ievgen Popovych updated PROTON-2776:

Labels: pull-request-available  (was: )

> Exception in IOHandler.on_selectable_expired/update after wakeup from sleep
> ---
>
> Key: PROTON-2776
> URL: https://issues.apache.org/jira/browse/PROTON-2776
> Project: Qpid Proton
>  Issue Type: Bug
>  Components: python-binding
> Environment: Fedora GNU/Linux, python binding 0.38.0
>Reporter: Ievgen Popovych
>Priority: Major
>  Labels: pull-request-available
>
> This occasionally happens after my laptop wakes up from overnight sleep.
> IOHandler.on_selectable_expired() is invoked with selectable that has
> _terminated=True and _transport=None so when IOHandler.update()
> is called it crashes when trying to handle the exception
> (since transport is None):
> {noformat}
> Traceback (most recent call last):
> File "/path/.venv/lib/python3.7/site-packages/proton/_handlers.py", line 
> 1293, in update
> capacity = transport.capacity()
> AttributeError: 'NoneType' object has no attribute 'capacity'
> During handling of the above exception, another exception occurred:
> Traceback (most recent call last):
> File "/path/my-project.py", line 285, in run
> self.container.run()
> File "/path/.venv/lib/python3.7/site-packages/proton/_reactor.py", line 197, 
> in run
> while self.process():
> File "/path/.venv/lib/python3.7/site-packages/proton/_reactor.py", line 262, 
> in process
> event.dispatch(self._global_handler)
> File "/path/.venv/lib/python3.7/site-packages/proton/_events.py", line 158, 
> in dispatch
> _dispatch(handler, type.method, self)
> File "/path/.venv/lib/python3.7/site-packages/proton/_events.py", line 131, 
> in _dispatch
> handler.on_unhandled(method, *args)
> File "/path/.venv/lib/python3.7/site-packages/proton/_reactor.py", line 905, 
> in on_unhandled
> event.dispatch(self.base)
> File "/path/.venv/lib/python3.7/site-packages/proton/_events.py", line 158, 
> in dispatch
> _dispatch(handler, type.method, self)
> File "/path/.venv/lib/python3.7/site-packages/proton/_events.py", line 129, 
> in _dispatch
> m(*args)
> File "/path/.venv/lib/python3.7/site-packages/proton/_handlers.py", line 
> 1237, in on_selectable_expired
> self.update(t, s, r.now)
> File "/path/.venv/lib/python3.7/site-packages/proton/_handlers.py", line 
> 1296, in update
> if transport.closed:
> AttributeError: 'NoneType' object has no attribute 'closed'
> {noformat}
> I have proposed a fix at https://github.com/apache/qpid-proton/pull/364.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



Re: [PR] NO-JIRA: [Python] Fix exception in IOHandler.on_selectable_expired/update [qpid-proton]

2023-11-20 Thread via GitHub


Jmennius commented on PR #364:
URL: https://github.com/apache/qpid-proton/pull/364#issuecomment-1818736158

   I've opened a Jira issue for this 
https://issues.apache.org/jira/browse/PROTON-2776.
   I can work on the PR if ncessary.


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org



[jira] [Created] (PROTON-2776) Exception in IOHandler.on_selectable_expired/update after wakeup from sleep

2023-11-20 Thread Ievgen Popovych (Jira)
Ievgen Popovych created PROTON-2776:
---

 Summary: Exception in IOHandler.on_selectable_expired/update after 
wakeup from sleep
 Key: PROTON-2776
 URL: https://issues.apache.org/jira/browse/PROTON-2776
 Project: Qpid Proton
  Issue Type: Bug
  Components: python-binding
 Environment: Fedora GNU/Linux, python binding 0.38.0
Reporter: Ievgen Popovych


This occasionally happens after my laptop wakes up from overnight sleep.

IOHandler.on_selectable_expired() is invoked with selectable that has
_terminated=True and _transport=None so when IOHandler.update()
is called it crashes when trying to handle the exception
(since transport is None):

{noformat}

Traceback (most recent call last):
File "/path/.venv/lib/python3.7/site-packages/proton/_handlers.py", line 1293, 
in update
capacity = transport.capacity()
AttributeError: 'NoneType' object has no attribute 'capacity'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/path/my-project.py", line 285, in run
self.container.run()
File "/path/.venv/lib/python3.7/site-packages/proton/_reactor.py", line 197, in 
run
while self.process():
File "/path/.venv/lib/python3.7/site-packages/proton/_reactor.py", line 262, in 
process
event.dispatch(self._global_handler)
File "/path/.venv/lib/python3.7/site-packages/proton/_events.py", line 158, in 
dispatch
_dispatch(handler, type.method, self)
File "/path/.venv/lib/python3.7/site-packages/proton/_events.py", line 131, in 
_dispatch
handler.on_unhandled(method, *args)
File "/path/.venv/lib/python3.7/site-packages/proton/_reactor.py", line 905, in 
on_unhandled
event.dispatch(self.base)
File "/path/.venv/lib/python3.7/site-packages/proton/_events.py", line 158, in 
dispatch
_dispatch(handler, type.method, self)
File "/path/.venv/lib/python3.7/site-packages/proton/_events.py", line 129, in 
_dispatch
m(*args)
File "/path/.venv/lib/python3.7/site-packages/proton/_handlers.py", line 1237, 
in on_selectable_expired
self.update(t, s, r.now)
File "/path/.venv/lib/python3.7/site-packages/proton/_handlers.py", line 1296, 
in update
if transport.closed:
AttributeError: 'NoneType' object has no attribute 'closed'
{noformat}

I have proposed a fix at https://github.com/apache/qpid-proton/pull/364.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

-
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org