No protocol.baseURL defined error in latest snapshot

Hello everyone. My gradle scripts upgraded to the latest snapshot this morning and suddenly this error popped up (no code has been changed on my end)

10:59:31.037 [ERROR] i.g.h.a.HttpRequestAction - No protocol.baseURL defined but provided url is relative : /polls/4

Any ideas what the issue might be?

Thanks!

Might be a regression I introduced yesterday.
Will check in a few hours, sorry.

Whoops there go my tests for today…time to find out how to force gradle to a previous snapshot :wink:

Thanks!

Fix under way.
As a workaround, you can set up your protocol per population instead of globally.

For example, instead of:

setUp(scn.inject(atOnceUsers(1))).protocols(httpProtocol)

write:

setUp(scn.inject(atOnceUsers(1)).protocols(httpProtocol))

Sorry for this,

Stéphane

Fixed!

Wohoo! Thanks!