-
Notifications
You must be signed in to change notification settings - Fork 866
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
Show repository migration progress in go-ipfs 0.12+ #1940
Comments
How to test or simulate migrationOne can create
WireframeMy initial idea is to have something very simple and generic: Key points
|
@hacdias will you have time to poke at this sometime in next two weeks? |
@lidel yes, I can work on this. I can read the stdout and stderr in this way: // define ipfsd
const interval = setInterval(() => {
const sub = ipfsd.subprocess
if (!sub) {
return
}
sub.stdout.on('data', data => console.log(data.toString()))
sub.stderr.on('data', data => console.log(data.toString()))
clearInterval(interval)
}, 100)
ipfsd.start() However, |
Thanks!
|
Ref. brave/brave-browser#20106, ipfs/kubo#8344
The text was updated successfully, but these errors were encountered: