GabriRuflex

Results 3 comments of GabriRuflex

Thanks @tomaswolf for your quick response. This is my implementation: ``` Map envParameters = MapEntryUtils.MapBuilder.builder() .put(CommonModuleProperties.SESSION_HEARTBEAT_TYPE.getName(), SessionHeartbeatController.HeartbeatType.IGNORE) .put(CommonModuleProperties.SESSION_HEARTBEAT_INTERVAL.getName(), HEARTBEAT.toMillis()) .put(CoreModuleProperties.AUTH_METHODS.getName(), List.of(UserAuthPasswordFactory.INSTANCE)) // tried with List.of(UserAuthPasswordFactory.PASSWORD) and UserAuthPasswordFactory.PASSWORD .put(SftpModuleProperties.AUTH_TIME.getName(), SSH_TIMEOUT.toMillis()) .put(SftpModuleProperties.CONNECT_TIME.getName(),...

@tomaswolf I updated the title and the description. The problem was simple (though not obvious to me, thanks for the help): even though I had defined the auth methods in...