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

Jeremy Hanna updated CASSANDRA-13356:
-------------------------------------
    Complexity: Low Hanging Fruit

> BootstrapMonitor.progress does not store all error messages
> -----------------------------------------------------------
>
>                 Key: CASSANDRA-13356
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-13356
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Legacy/Tools
>            Reporter: Hao Zhong
>            Assignee: Hao Zhong
>            Priority: Normal
>              Labels: lhf
>             Fix For: 4.x
>
>         Attachments: cassandra.patch
>
>
> The BootstrapMonitor.progress ignores error messages when an error is 
> ProgressEventType.ERROR. Indeed, RepairRunner.progress once had a similar 
> bug, but is fixed. The fixed code is:
> {code}
>  public void progress(String tag, ProgressEvent event)
>     {
>         ProgressEventType type = event.getType();
>         String message = String.format("[%s] %s", 
> format.format(System.currentTimeMillis()), event.getMessage());
>         if (type == ProgressEventType.PROGRESS)
>         {
>             message = message + " (progress: " + 
> (int)event.getProgressPercentage() + "%)";
>         }
>         out.println(message);
>         if (type == ProgressEventType.ERROR)
>         {
>             error = new RuntimeException("Repair job has failed with the 
> error message: " + message);
>         }
>         if (type == ProgressEventType.COMPLETE)
>         {
>             condition.signalAll();
>         }
>     }
> {code}
> Please refer to CASSANDRA-12508 for details.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org

Reply via email to