Peter-Frank Spierenburg

Results 15 comments of Peter-Frank Spierenburg

For quick reference, here is my integration test. ``` package demo import grails.plugins.rest.client.RestResponse import grails.plugins.rest.client.RestBuilder import grails.testing.mixin.integration.Integration import grails.transaction.* import spock.lang.Shared import spock.lang.Specification import grails.plugin.springsecurity.ui.RegistrationCode @Integration @Rollback class VerifyRegistrationSpec extends...

Interestingly, the test passes if I call uiRegistrationCodeStrategy.finishRegistration explicitly: ``` void "test something"() { given:"a user account is created and assigned a registration code" def user = new User(username:"username", password:"password",...

I've updated the test in my demo project, but I get the same result. I changed both the url as you suggested, and turned the integration test into a functional...

I think I figured it out. I should be using `MultiOutput` instead of `MapOutput`. When I have my code working, I will post it here.

long cursor = 0; final List result = commands.dispatch(CommandType.SCAN, new NestedMultiOutput(REDIS_CODEC), new CommandArgs(REDIS_CODEC).add("some_key").add("CURSOR").add(cursor).add("OBJECTS")); long nextCursor = (Long) result.get(0); List block = ((List) result.get(1)).iterator(); At this point `nextCursor` is index of...

No other build flags were required for me to build the code and upload it to my Arduino ESP32 Nano.

I have made changes to `platform` and removed `-D CONFIG_LITTLEFS_FOR_IDF_3_2` as requested. @softhack007 suggested buildenv built successfully, but would not upload to my device.

I tried using `esptool.py erase_flash` but with no effect.

I get the same result on a different board.

Is it possible to disable the "Cucumber steps definition builder"? I haven't written any steps yet, and my eclipse installation is unusable.