panay

Results 5 comments of panay

Another example with sqlalchemy2 ( where syntax has changed a lot comparing with versions 1.x): ~~~python query = request.dbsession.execute( select(Station, func.min(Check.result)) # pylint: disable=E1102 .join(Check.channel) .join(Channel.station) .where( Station.triggered == False,...

If this issue makes sense and if needed I'm willing to work on the PR

I quicky replaced ValueError exceptions in get_waveforms|events|stations|[_bulk] with FDSNNoServiceException in PR #3488 I tried to run tests as explained in documentation but got a bunch of UnicodeDecodeError related failed tests....

I've been hit by this exception this morning Here are the variables captured by sentry in obspy.clients.fdsn.client:raise_on_error() : ``` code = None data = URLError(gaierror(-3, 'Temporary failure in name resolution'))...

The condition `if code != 200` seems too broad and include the case where `code == None` The case `code == None` seems handled later in raise_on_error()