rsync return 12
Hey,
I am trying to setup edX devstack based on Vagrant with Vscode. I've a multi-root workspace environment. The good part is, my files are syncing perfectly. Here's my workspace settings
{
"folders": [
{
"path": "devstack"
},
{
"path": "nodebb"
}
],
"settings": {
"sync-rsync.sites": [
{
"localPath": "devstack/edx-platform/",
"remotePath": "vagrant@vagrant:/edx/app/edxapp/edx-platform/",
"shell": "ssh -p 2222"
},
{
"localPath": "devstack/src/",
"remotePath": "vagrant@vagrant:/edx/src/",
"shell": "ssh -p 2222"
}
],
"sync-rsync.onSave": true,
"sync-rsync.executableShell": "/bin/bash",
"sync-rsync.notification": true
}
}
Whenever I make changes in any of the files specified in localPath they appear on the remote machine. But the package shows me this error

Am I missing something?
It is saying rsync cannot connect to "vagrant" can you ping "vagrant" or ssh into it?
@sadan Do you add vagrant resolve to your local hosts file?
have you confirmed you have rsync on your guest machine?
I have run into this issue before receiving that error code.