-
Notifications
You must be signed in to change notification settings - Fork 190
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
Change class org.apache.commons.net.ftp.parser.MVSFTPEntryParser to support more datasets #182
Change class org.apache.commons.net.ftp.parser.MVSFTPEntryParser to support more datasets #182
Conversation
RECFM (record format) of an MVS dataset is not a relevant information about a dataset. Therefore it should be ignored "static final String FILE_LIST_REGEX". Further in method "parseFileList(final String entry)" also migrated and archived datasets should be considered
@haegar9766 |
@garydgregory |
Uh? By updating the existing test for the class you're modifying... |
Additional ftp return strings for migrated datasets and datasets with recfm containing ASA (e.g. FBA)
@garydgregory |
@haegar9766 |
@garydgregory |
support more datasets #182 - Javadoc - Simplify - Don't scan entry twice
Current MVSFTPEntryParser code doesn't support all possible datasets because some RECFM options (e.g. "FBA") are not listet in "static final String FILE_LIST_REGEX" (see also Jira-Ticket NET-725). This PR should fix this problem.