You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sqoop.apache.org by "Prasanth Chagarlamudi (JIRA)" <ji...@apache.org> on 2015/05/06 16:59:00 UTC

[jira] [Updated] (SQOOP-2347) Typo in code snippet in sqoop documentation

     [ https://issues.apache.org/jira/browse/SQOOP-2347?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Prasanth Chagarlamudi updated SQOOP-2347:
-----------------------------------------
    Summary: Typo in code snippet in sqoop documentation  (was: Typo in sqoop documentation)

> Typo in code snippet in sqoop documentation
> -------------------------------------------
>
>                 Key: SQOOP-2347
>                 URL: https://issues.apache.org/jira/browse/SQOOP-2347
>             Project: Sqoop
>          Issue Type: Bug
>          Components: docs
>    Affects Versions: 1.99.4
>            Reporter: Prasanth Chagarlamudi
>            Priority: Minor
>              Labels: documentation
>
> There is a typo in code snippet. http://sqoop.apache.org/docs/1.99.4/ClientAPI.html
> private static void printMessage(List<MConfig> configs) {
>   for(MConfig config : configs) {
>     List<MInput<?>> inputlist = config.getInputs();
>     if (config.getValidationMessages() != null) {
>      // print every validation message
>      for(Message message : config.getValidationMessages()) {
>       System.out.println("Config validation message: " + message.getMessage());
>      }
>     }
>     for (MInput minput : inputlist) {
>       if (minput.getValidationStatus() == Status.WARNING) {
>        for(Message message : {color:red}config{color}.getValidationMessages()) {
>         System.out.println("Config Input Validation Warning: " + message.getMessage());
>       }
>     }
>     else if (minput.getValidationStatus() == Status.ERROR) {
>       for(Message message : {color:red}config{color}.getValidationMessages()) {
>        System.out.println("Config Input Validation Error: " + message.getMessage());
>       }
>      }
>     }
>   }
> The text in the red needs to replaced by minput.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)