Github user merrimanr commented on the issue:
https://github.com/apache/metron/pull/1157
I ran a quick test in REST and it looks like the status never gets to
`SUCCEEDED`.
Here is my request:
```
curl -X POST --header 'Content-Type: application/json' --header 'Accept:
application/json' -d '{}' 'http://node1:8082/api/v1/pcap/fixed'
```
After the job finishes (looking at the RM UI), the status is:
```
{
"jobId": "job_1533831319048_0046",
"jobStatus": "FINALIZING",
"description": "Finalizing job.",
"percentComplete": 75,
"pageTotal": 0
}
```
If I keep requesting status it always returns this.
---