Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
geomultisens
gms_preprocessing
Commits
ce772dc1
Commit
ce772dc1
authored
Nov 25, 2020
by
Daniel Scheffler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed exception while closing AtmCorr.logger.
Signed-off-by:
Daniel Scheffler
<
danschef@gfz-potsdam.de
>
parent
dbbed264
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
HISTORY.rst
HISTORY.rst
+1
-0
gms_preprocessing/algorithms/L1C_P.py
gms_preprocessing/algorithms/L1C_P.py
+2
-1
No files found.
HISTORY.rst
View file @
ce772dc1
...
@@ -8,6 +8,7 @@ History
...
@@ -8,6 +8,7 @@ History
* Fixed missing log messages regarding released locks.
* Fixed missing log messages regarding released locks.
* Fixed issue #103 ('struct.error: unpack requires a buffer of 4 bytes' within SpatialIndexMediator in case of various
* Fixed issue #103 ('struct.error: unpack requires a buffer of 4 bytes' within SpatialIndexMediator in case of various
parallel database accesses) by adding a database lock that blocks parallel database queries.
parallel database accesses) by adding a database lock that blocks parallel database queries.
* Fixed exception while closing AtmCorr.logger.
0.18.11 (2020-11-03)
0.18.11 (2020-11-03)
...
...
gms_preprocessing/algorithms/L1C_P.py
View file @
ce772dc1
...
@@ -929,7 +929,8 @@ class AtmCorr(object):
...
@@ -929,7 +929,8 @@ class AtmCorr(object):
finally
:
finally
:
# rs_image.logger must be closed properly in any case
# rs_image.logger must be closed properly in any case
rs_image
.
logger
.
close
()
if
rs_image
.
logger
is
not
None
:
rs_image
.
logger
.
close
()
# get processing infos
# get processing infos
self
.
proc_info
=
self
.
ac_input
[
'options'
][
'processing'
]
self
.
proc_info
=
self
.
ac_input
[
'options'
][
'processing'
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment