Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spechomo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
geomultisens
spechomo
Commits
8b00bc5f
Commit
8b00bc5f
authored
3 years ago
by
Daniel Scheffler
Browse files
Options
Downloads
Patches
Plain Diff
Caught 'ValueError: I/O operation on closed file'.
Signed-off-by:
Daniel Scheffler
<
danschef@gfz-potsdam.de
>
parent
216a8711
No related branches found
No related tags found
No related merge requests found
Pipeline
#25886
failed
3 years ago
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
spechomo/logging.py
+5
-1
5 additions, 1 deletion
spechomo/logging.py
with
5 additions
and
1 deletion
spechomo/logging.py
+
5
−
1
View file @
8b00bc5f
...
...
@@ -155,7 +155,11 @@ class SpecHomo_Logger(logging.Logger):
if
handler
.
get_name
()
==
'
StringIO handler
'
:
self
.
streamObj
.
flush
()
self
.
removeHandler
(
handler
)
# if not called with '[:]' the StreamHandlers are left open
try
:
handler
.
flush
()
except
ValueError
:
# ValueError: I/O operation on closed file
pass
handler
.
close
()
except
PermissionError
:
warnings
.
warn
(
'
Could not properly close logfile due to a PermissionError: %s
'
%
sys
.
exc_info
()[
1
])
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment