Alexander Mills

Results 264 comments of Alexander Mills

In other words, I ran the example code as is, with my own Sauce Labs username/key, and I get this: ```console Started static web server on port 8080 Created secure...

@novemberborn sounds like you'd have to save the run order to disk for every run

nested tests are a good thing - if you take what would be nested and put it into separate test files, you will definitely see backwards progress in terms of...

not sure what the status is on this one, but I am a fan of nested groups, I already added an example on this thread that demonstrates the usefulness of...

regarding this question: https://stackoverflow.com/questions/23931208/how-vert-x-is-single-threaded the biggest question in my head for a simple REST API is - for each incoming request - should I do work with a worker verticle...

@aesteve my biggest question is if we use 1 verticle, if all my code is running in the same thread (that way I can avoid the need to explicitly lock).

ok i see, so i guess the fix i have works well enough?