Skip to content

Commit

Permalink
CopyFilesOverSSHV0 change sequential files sending to continuous queue (
Browse files Browse the repository at this point in the history
#19798)

* Change sequential exectuion to Queue mechanism
* Update ssh2 sftp client in node20 handler package
* Revert dependencies to their versions as they were in CopyFilesOverSSHV0 0.231.0
  • Loading branch information
ivanduplenskikh authored May 27, 2024
1 parent 4826894 commit f6218ec
Show file tree
Hide file tree
Showing 32 changed files with 2,353 additions and 791 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,23 @@
"loc.input.help.failOnEmptySource": "Fail if no matching files to be copied are found under the source folder.",
"loc.input.label.flattenFolders": "Flatten folders",
"loc.input.help.flattenFolders": "Flatten the folder structure and copy all files into the specified target folder on the remote machine.",
"loc.input.label.concurrentUploads": "Number of concurrent uploads when copying files",
"loc.input.help.concurrentUploads": "Number of concurrent uploads when copying files. Default is 10.",
"loc.input.label.delayBetweenUploads": "Delay between queueing uploads (in milliseconds)",
"loc.input.help.delayBetweenUploads": "Delay between queueing uploads (in milliseconds). Default is 50.",
"loc.messages.CheckLogForStdErr": "Check the build log for STDERR from the command.",
"loc.messages.CleanTargetFolder": "Cleaning target folder %s on the remote machine",
"loc.messages.CleanTargetFolderFailed": "Failed to clean the target folder on the remote machine. %s",
"loc.messages.ConnectionFailed": "Failed to connect to remote machine. Verify the SSH service connection details. %s.",
"loc.messages.ConnectionNotSetup": "SSH service connection is not set up.",
"loc.messages.CopyCompleted": "Completed copying %s files to the remote machine.",
"loc.messages.CopyDirectoryCompleted": "Completed copying %s directory to the remote machine.",
"loc.messages.CopyDirectoryFailed": "Failed to copy %s directory to the remote machine. %s",
"loc.messages.CopyingFiles": "Found %s files to copy to the remote machine.",
"loc.messages.FailedOnFile": "Failed to copy %s. %s",
"loc.messages.FileExists": "File %s cannot be copied to the remote machine because it already exists and the 'Overwrite' option is disabled.",
"loc.messages.FolderCreated": "Created folder %s on the remote machine.",
"loc.messages.FoldersCreated": "Created %s folders on the remote machine.",
"loc.messages.NothingToCopy": "No files were found matching the patterns specified to copy to the remote machine.",
"loc.messages.NumberFailed": "Failed to copy %d files",
"loc.messages.RemoteCmdExecutionErr": "Command %s failed with errors on remote machine. %s.",
Expand All @@ -44,8 +52,9 @@
"loc.messages.StartedFileCopy": "Copying file %s to %s on remote machine.",
"loc.messages.UploadFileFailed": "Failed to upload %s to %s on remote machine. %s.",
"loc.messages.UseDefaultPort": "Using port 22 which is the default for SSH since no port was specified.",
"loc.messages.TargetNotCreated": "Unable to create target folder %s.",
"loc.messages.TargetNotCreated": "Unable to create target folder %s. %s.",
"loc.messages.CheckingPathExistance": "Checking if %s on the remote machine exists.",
"loc.messages.PathExists": "%s exists on the remote machine",
"loc.messages.PathNotExists": "%s doesn't exist on the remote machine"
"loc.messages.PathNotExists": "%s doesn't exist on the remote machine",
"loc.messages.UploadFolderFailed": "Failed to upload folder %s to %s on remote machine. %s."
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f6218ec

Please sign in to comment.