Polling request not executed at all

Hi gatling user group,

Maybe it is to late…but i do not understand why t’he …polling request is not executed at all… if i remove t’he polling, so change It like t’he second code snippet, then It works

// NOT EXECUTED WHY ??
.exec (
polling
.every(1 seconds)
.exec(
http(“pollDocument02”).get("/…<a syntax correct request<>
.check(status.not(200))
)
).exec(polling.stop)

// EXECUTED
.exec (
exec(
http(“pollDocument02”).get("/…<a syntax correct request<>
.check(status.not(200))
)
)

So please any advice ?
Regards,
Arjan

Because you’re stopping the poller right after starting it.