-
Type: Bug
-
Resolution: Fixed
-
Priority: Major - P3
-
Affects Version/s: None
-
Component/s: None
-
None
-
Fully Compatible
-
ALL
2 days ago I made a change where I start ensuring paths are files before being processed. At the very end I tried to fix linting by going from
set([path for path in glob.glob(pattern) if os.path.isfile(path)])
to
and only ran pylinters to ensure this was okay. This was not okay and it should actually be
{path for path in glob.glob(pattern) if os.path.isfile(path)}
It is a good thing we have alerts for this now.
- is caused by
-
SERVER-82603 fast_archive creates traceback on core_analyzer tasks
- Closed