Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 74804200CC6 for ; Mon, 3 Jul 2017 15:40:09 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 733F7160BE4; Mon, 3 Jul 2017 13:40:09 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id C4377160BEC for ; Mon, 3 Jul 2017 15:40:08 +0200 (CEST) Received: (qmail 74597 invoked by uid 500); 3 Jul 2017 13:39:25 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 69603 invoked by uid 99); 3 Jul 2017 13:34:03 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Jul 2017 13:34:03 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 90B7CC18AD for ; Mon, 3 Jul 2017 13:34:02 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -100.002 X-Spam-Level: X-Spam-Status: No, score=-100.002 tagged_above=-999 required=6.31 tests=[RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id KYQp5o4tLEaX for ; Mon, 3 Jul 2017 13:34:01 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 4D94C60D33 for ; Mon, 3 Jul 2017 13:34:01 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 800FAE065D for ; Mon, 3 Jul 2017 13:34:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 3F3E8245F8 for ; Mon, 3 Jul 2017 13:34:00 +0000 (UTC) Date: Mon, 3 Jul 2017 13:34:00 +0000 (UTC) From: "Alexander Eller (JIRA)" To: issues@commons.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (NET-639) Bug in MVSFTPEntryParser.preParse MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Mon, 03 Jul 2017 13:40:09 -0000 [ https://issues.apache.org/jira/browse/NET-639?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alexander Eller updated NET-639: -------------------------------- Description: Some PS-files couldn't be retrieved from ftp host (during FTPClient.listFiles("xxx")). After investigation we've noticed, that the file has an unusual large allocation info (reading {{ Volume Unit Referred Ext Used Recfm Lrecl BlkSz Dsorg Dsname : : : : : : : : : : PEZ320 3390 2017/07/03 215807 FB 29600 29600 PS 'LBP.TX.FTP.LAZAGDOM.WORK.HILF' : : : : : : : : : : }} so the values of ext and used column merged. As a result, the pattern FILE_LIST_REGEX in MVSFTPEntryParser doesn't match -> the file is ignored. was: Some PS-files couldn't be retrieved from ftp host (during FTPClient.listFiles("xxx")). After investigation we've noticed, that the file has an unusual large allocation info (reading {{Volume Unit Referred Ext Used Recfm Lrecl BlkSz Dsorg Dsname : : : : : : : : : : PEZ320 3390 2017/07/03 215807 FB 29600 29600 PS 'LBP.TX.FTP.LAZAGDOM.WORK.HILF' : : : : : : : : : : }} so the values of ext and used column merged. As a result, the pattern FILE_LIST_REGEX in MVSFTPEntryParser doesn't match -> the file is ignored. > Bug in MVSFTPEntryParser.preParse > --------------------------------- > > Key: NET-639 > URL: https://issues.apache.org/jira/browse/NET-639 > Project: Commons Net > Issue Type: Bug > Components: FTP > Affects Versions: 3.6 > Environment: different clients running Windows 7, AIX, Ubuntu 16.04 > IBM FTP CS V2R1 as ftp host running z/OS 02.01.00 > Reporter: Alexander Eller > Priority: Minor > > Some PS-files couldn't be retrieved from ftp host (during FTPClient.listFiles("xxx")). After investigation we've noticed, that the file has an unusual large allocation info (reading > {{ > Volume Unit Referred Ext Used Recfm Lrecl BlkSz Dsorg Dsname > : : : : : : : : : : > PEZ320 3390 2017/07/03 215807 FB 29600 29600 PS 'LBP.TX.FTP.LAZAGDOM.WORK.HILF' > : : : : : : : : : : > }} > so the values of ext and used column merged. As a result, the pattern FILE_LIST_REGEX in MVSFTPEntryParser doesn't match -> the file is ignored. -- This message was sent by Atlassian JIRA (v6.4.14#64029)