-
Notifications
You must be signed in to change notification settings - Fork 533
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed bug for work dirs longer than 255 characters, fixes #2061 #3495
Conversation
83a1536
to
ec43408
Compare
This change is fully backwards compatible and will not affect existing pipelines, but it will prevent the pipeline engine from crashing when some parameters are long and it was trying to create subdirectories longer than 255 characters (a typical unix limit).
ec43408
to
99aad8a
Compare
Codecov Report
@@ Coverage Diff @@
## master #3495 +/- ##
==========================================
+ Coverage 63.62% 65.31% +1.69%
==========================================
Files 309 309
Lines 40855 40965 +110
Branches 5379 5384 +5
==========================================
+ Hits 25995 26758 +763
+ Misses 13835 13134 -701
- Partials 1025 1073 +48
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems pretty safe.
Co-authored-by: Chris Markiewicz <effigies@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comments
As suggested by @effigies
Summary
This change is fully backwards compatible and will
not affect existing pipelines, but it will prevent
the pipeline engine from crashing when some parameters
are long and it was trying to create subdirectories
longer than 255 characters (a typical unix limit).
Fixes #2061 .