You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to do a concurrent git-show with simple-git, occasionally I see truncation after 8192 characters.
On my machine, I'll see it fail about once every 300-2000 tries.
Here's a sample script replicating the error:
const{default: simpleGit}=require('simple-git')constgit=simpleGit()Promise.all(Array(10000).fill().map(async(_,i)=>{constresp=awaitgit.raw(['show','master:./my/file'])if(i>0&&i%1000===0){console.log(`So far, ${i} Successful`)}if(resp.length!=13043){console.log(resp)console.log(`Failed to fetch the full page after ${i} tries: Actual num bytes: ${resp.length} Expected: 13043`)process.exit(1)}}))
When I try to do a concurrent git-show with simple-git, occasionally I see truncation after 8192 characters.
On my machine, I'll see it fail about once every 300-2000 tries.
Here's a sample script replicating the error:
My system
EDIT: I removed the concurrent processes setting and I still see it failing in the same way
The text was updated successfully, but these errors were encountered: