Sean Flanigan

Results 53 comments of Sean Flanigan

@olivergondza I had the same problem. I think the default generated kerberos config doesn't like Red Hat hostnames. Try this: ``` KDC_CONFIG=samples/kdc.json ./kdc build ```

@olivergondza This also seems to work, and fits better with examples on the home page: ``` KDC_CLIENT=hostname KDC_DOMAIN_NAME=example.com ./kdc build ``` You may also want to remove `--no-cache` from `docker...

Fair enough. I think it's good to capture this architectural limitation explicitly, until a better solution for sharing code between client and server is in place. I was hoping I...

@biberesser I hadn't considered that aspect. I wonder if https://github.com/ManfredTremmel/gwt-bean-validators could be converted to Kotlin - although I suspect it may be a lot of work to make it independent...

Thanks for this work! Regarding the annotation licence/dependency problem, Cobertura lets you specify the classname of any annotation, and then uses that annotation. Having a similar feature would make it...

Perhaps I should have reported this against `fabric8-maven-plugin`, but it looks like it's just invoking `gofabric8 start --minishift --console --batch` in this case.

I see that I should have used `mvn fabric8:cluster-stop -Dfabric8.cluster.delete=true` instead of having to use `minishift delete`, but it just produces a help message and apparently doesn't delete anything: ```...

This problem affects the _writing_ of Java records too. I want to define the names and order of my CSV columns in a Java record, but they come out in...

AF_UNIX socket support was [added to Windows 10](https://devblogs.microsoft.com/commandline/af_unix-comes-to-windows/) in the April 2018 Update. It's limited, but it seems like it might be enough for Maestral. But it's not currently exposed...

Thanks for the reply @srinivasankavitha. > We could potentially expose a config property to do the same and apply that on the SchemaGenerator. I am a bit reluctant to add...