Mike Noordermeer

Results 23 comments of Mike Noordermeer

FYI - Same here on a single-node dev cluster. Snapshot info: ``` ID 32-2392224-1659978506821 Size 73385 Index 2392224 Term 32 Version 1 Type Count Size ---- ---- ---- Register 56...

Config here (1.12.3 works fine, 1.13.0 does not start) - almost completely default except for enabling Connect. ``` data_dir = "/opt/consul" client_addr = "0.0.0.0" ui = true server = true...

Yes, and the problem is that previously `http` was used, other projects consistently added both `http` and `https` to the `spring.schemas`, but that was never fixed for spring-security-oauth. So that's...

@jgrandja I just can't understand the decision to actively start breaking existing or legacy projects. What's next, removing the artifacts from Maven Central? The [end-of-life announcement](https://spring.io/blog/2020/05/07/end-of-life-for-spring-security-oauth) stated that the project...

@jgrandja The point is that I never expected XSD's to be deleted. The Spring Security 2.0 XSD's are still around as well, and that version is certainly end of life...

Thank you very much, saves me from a lot of overtime during the weekend (and yes, we do have a plan to get rid of the dependency and will certainly...

We're using `service.findItems()` for this, not sure what the advantage of `CalendarFolder` is?

I'm just guessing here, but can't you just cast the `Item`s from `service.findItems()` to an `Appointment`? I agree the `findAppointments()` method should probably be fixed (well, the `CalendarView` should), but...

Yes it does, something like this should work: (don't ask me why we're using `java.sql.Date` here, I'm just copying the code as is and still need to figure this out)...