ActionableAgile / jira-to-analytics

This code extracts data from Jira based on a yaml config file, and outputs a properly formatted CSV that can be read by the ActionableAgile Analytics tool.
https://www.actionableagile.com
GNU General Public License v2.0
57 stars 36 forks source link

Using legacy yaml without --legacy/-l freezes at 1% #42

Open MPV opened 7 years ago

MPV commented 7 years ago

I spent some time troubleshooting until I noticed that I had used the "legacy" format.

I just wanted to share what currently happens when this is the case:

When I ran it on my machine:

$ node jira-to-analytics.js -i my.yaml -o data.csv
ActionableAgile Extraction Tool
JIRA Extractor configuring...

Authenticating...
Authentication successful.

Beginning extraction process
  Extracting: [                    ] 1% | 3818.2 seconds remaining

(it stays at 1% but the "seconds remaining" just keeps increasing what seems indefinitely)

When I ran it on my CI environment:

$ node jira-to-analytics.js -i my.yaml -o data.csv
cActionableAgile Extraction Tool
JIRA Extractor configuring...

Authenticating...
Authentication successful.

Beginning extraction process

...and then it gets stuck there.

My CI runner eventually cancelled the job after 1 hour. 😃