You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jclou...@googlegroups.com
Hi All,
I've run into a strange problem during live testing. I've got some live tests for the Volume API [1] and they're running successfully but when the test are done and the tearDownContext() method
runs I get a RejectedExecutionException [2]. Frankly I'm not too sure what's going on. From what I've read it seems like the executor service has been shutdown by the time tearDownContext() is called but I don't know if that's true.
Has anyone else run into this while testing? Any ideas as to what might be going on?
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to jclou...@googlegroups.com
Oops. I was calling cinder.close() in a method in the superclass (BaseCinderApiLiveTest) of VolumeApiLiveTest and that method was getting called before VolumeApiLiveTest.tearDownContext(). Basically I was trying to use the context after I had closed it.