remove future from trip reader after closing
All checks were successful
continuous-integration/drone/push Build is passing

Future was not removed from the reader instance after close() has been
called, so re-opening was not possible. Remove the instance after
termination allows calling open() again.
This commit is contained in:
2020-10-14 09:40:59 +02:00
parent 69f9e0124a
commit b80da71014
3 changed files with 15 additions and 7 deletions

View File

@ -10,6 +10,9 @@ All notable changes to this project will be documented in this file.
* Client configuration with separate `UraClientConfiguration` class and builder
* Client throws custom checked exception `UraClientException` instead of runtime exceptions on errors (#10)
### Fixed
* Allow reopening an `AsyncUraTripReader` without raising an exception (#12)
## 1.3.0 - 2019-12-04
### Security