-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Update rmrfSync method #23854
Update rmrfSync method #23854
Conversation
💚 Build Succeeded |
Can you elaborate on the issue with this implementation on Windows? |
So the original implementation on windows failed pretty often with a permission issue, so I tried to update the method and use this package which seemed to work better but still sometimes fails with a device busy. So I ended up putting a catch around it, which I have not updated yet in this PR. |
package.json
Outdated
@@ -278,6 +278,7 @@ | |||
"expect.js": "0.3.1", | |||
"faker": "1.1.0", | |||
"fetch-mock": "^5.13.1", | |||
"fs-extra": "^7.0.0", |
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 should just be added to the packages/kbn-test/package.json
@spalger is going to look into this, and suggests using del package if anything as it's used elsewhere in our repo. |
Do we have example of del? I can try it see if it works consistently. |
💔 Build Failed |
💔 Build Failed |
All of the places that |
6d3a637
to
8625451
Compare
💔 Build Failed |
💚 Build Succeeded |
* Update rmrfSync method * Add catch statement * Fix lint issues * switch to del package * remove old rmrf_sync module * Fix CI failure del is not a function error * Fix spaces
Update rmrfSync file for windows.
Part of issue #21315