Add Init Msg 64/72464/1
authorInstrumental <jonathan.gathman@att.com>
Mon, 12 Nov 2018 20:07:24 +0000 (14:07 -0600)
committerInstrumental <jonathan.gathman@att.com>
Mon, 12 Nov 2018 20:09:24 +0000 (14:09 -0600)
Issue-ID: AAF-618
Change-Id: Ia2f66ab3310cd3bee2cc0bc4454bd0a71762db38
Signed-off-by: Instrumental <jonathan.gathman@att.com>
cadi/core/src/main/java/org/onap/aaf/cadi/filter/MapBathConverter.java

index ce101e2..36372eb 100644 (file)
@@ -81,7 +81,7 @@ public class MapBathConverter {
                        @Override
                        public void visit(List<String> row) throws CadiException {
                                if(row.size()<3) {
-                                       throw new CadiException("CSV file " + csv + " must have at least 2 Basic Auth columns and an Expiration Date(YYYYMMDD) in each row");
+                                       throw new CadiException("CSV file " + csv + " must have at least 2 Basic Auth columns and an Expiration Date(YYYY-MM-DD) in each row");
                                }
                                try {
                                        Date date = sdf.parse(row.get(2));