Github user smarthi commented on a diff in the pull request:

    https://github.com/apache/incubator-pirk/pull/43#discussion_r73238652
  
    --- Diff: 
src/main/java/org/apache/pirk/querier/wideskies/QuerierDriverCLI.java ---
    @@ -239,12 +242,19 @@ private boolean parseOptions()
           }
           SystemConfiguration.setProperty(CERTAINTY, 
getOptionValue(CERTAINTY));
     
    -      if (!hasOption(QUERYNAME))
    +      if (!hasOption(QUERYID))
           {
    -        logger.info("Must have the option " + QUERYNAME);
    +        logger.info("Must have the option " + QUERYID);
             return false;
           }
    -      SystemConfiguration.setProperty(QUERYNAME, 
getOptionValue(QUERYNAME));
    +      
    +      // create a formatted date/time string
    +      Date date = new Date();
    +      SimpleDateFormat sdf = new SimpleDateFormat("MM.dd.yyyy_hh.mm.ss");
    +      String formattedDate = sdf.format(date);
    --- End diff --
    
    I believe we decided to go with Java 8 for Pirk and the POM has been 
updated to reflect that.  The link u point to needs to be updated too. Pirk is 
officially now on Java 8. Suggest u rebase ur  code with the present master and 
update this PR. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to