Comment #5 on issue 4769 by
[hidden email]: Build on Hudson is Broken
http://code.google.com/p/pharo/issues/detail?id=4769No, it should not time out, on the contrary, ZnDispatcherDelegate, which is
being tested here, immediately return a 404 not found for /missing, as can
be seen here:
ZnDispatcherDelegate>>#handleRequest: request
| handler |
handler := self dispatcherDictionary
at: request uri pathPrintString
ifAbsent: [ ^ ZnResponse notFound: request uri ].
^ handler
value: request
value: (ZnResponse new
statusLine: (ZnStatusLine ok);
headers: ZnHeaders defaultResponseHeaders;
yourself)
As far as I can see, there is nothing wrong with this test. It has been
running OK for quite some time on many platforms.
_______________________________________________
Pharo-bugtracker mailing list
[hidden email]
http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-bugtracker