-
Notifications
You must be signed in to change notification settings - Fork 98
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
Support for copy/paste of MVS files within and cross lpars #3387
Merged
Merged
Changes from 21 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
d666151
Copy Seq cross lpars
likhithanimma1 93724b4
Support download of whole PDS
likhithanimma1 8246e26
Fix progress bar
likhithanimma1 07fd0b0
Merge remote-tracking branch 'origin/main' into MvsCopyCrossLpar
likhithanimma1 d56402a
Improve functionality of copy option in context menu
likhithanimma1 a02d3db
Optimization of code
likhithanimma1 b9f5cb4
Complete code optimization
likhithanimma1 5236966
Remove unwanted code
likhithanimma1 34397b3
Merge remote-tracking branch 'zowe/main' into MvsCopyCrossLpar
likhithanimma1 9775a4b
Updated test cases
likhithanimma1 00e21da
Merge branch 'main' into MvsCopyCrossLpar
likhithanimma1 8eb8f21
Increase coverage
likhithanimma1 ce768bf
Code coverage for DatasetUtils file
likhithanimma1 d8edfaa
Changelog Updated
likhithanimma1 739ad19
Run pnpm --filter vscode-extension-for-zowe vscode:prepublish
likhithanimma1 16ee193
Merge remote-tracking branch 'zowe/main' into MvsCopyCrossLpar
likhithanimma1 2b59528
Adress fernando's comments
likhithanimma1 7196577
Remove function from ftp extension
likhithanimma1 caa20f9
Merge branch 'main' into MvsCopyCrossLpar
likhithanimma1 668a35e
Merge branch 'main' into MvsCopyCrossLpar
likhithanimma1 c226f16
Merge branch 'main' into MvsCopyCrossLpar
likhithanimma1 a4f7447
Merge branch 'main' into MvsCopyCrossLpar
likhithanimma1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
If we remove this check, we are already going to call the _getSession and replacing the "existing one"
is that desired, or will that cause some breakage in certain edge cases?
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.
If the check is in place, in the function
copyDataSetCrossLpar
after generating thesourceSession
with the help ofthis.getSession(sourceprofile)
the targetSession will also be generated same as sourceSession with the callthis.getSession()
which is not the case when u want to paste the copied dataset to different LPAR.