[
https://issues.apache.org/jira/browse/SQOOP-2347?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Prasanth Chagarlamudi resolved SQOOP-2347.
------------------------------------------
Resolution: Fixed
> 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 on page url
> http://sqoop.apache.org/docs/1.99.4/ClientAPI.html in the "View Error or
> Warning valdiation message" section
> 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)