Order of crawler execution

(from github.com/micakovic)
Is there a way to guarantee ordered execution of multiple web crawlers, for example ascending by name (or any other way)?

Example:

01 - Web crawler One
02 - Web crawler Three
03 - Web crawler Two

I would like to make sure that crawling always happens in this order: 01, 02, 03.

In this scenario, I have simultaneous crawler config set to 1, which means that they will happen in sequence, but from what I observed, the sequence is random.

(from github.com/marevol)
They are not sorted at the moment.
It will be fixed in the next release(sort by name).