Am I doing something wrong? According to the documentation RSVP.all is supposed to return a promise. And all promises support chainable 'then's. In this example: http://jsbin.com/epuxod/3/edit the first 'then' calls the failed callback properly, but the second 'then' calls the passed callback. I would expect the 2nd 'then' to call the failed callback.
Asked
Active
Viewed 1,103 times
1 Answers
3
I think you have to return a rejected promise from the first rejection handler in order to pass to the second one.
http://jsbin.com/epuxod/12/edit
I guess if you do nothing, then RSVP assume this is resolved, so it goes the resolve handler.

sly7_7
- 11,961
- 3
- 40
- 54
-
Cool, now I know what I'm saying :) – sly7_7 Jun 02 '13 at 22:08