Re: [hibernate-dev] Diffs in prose files nicely viewable on GitHub now

2014-02-24 Thread Hardy Ferentschik
Nice On 24 Jan 2014, at 08:52, Gunnar Morling wrote: > Hi, > > As I just noticed, GitHub allows since recently to view diffs in prose > files (e.g. MarkDown or AsciiDoc) in a *rendered* fashion [1]. > > Just click the "Rendered" button next to a diff in commits or pull requests > as e.g. her

[hibernate-dev] [OGM] Shutdown embedded MongoDB instance

2014-02-24 Thread Guillaume SCHEIBEL
Hi guys, I'm working on OGM-303 and after having run the test suite when comes the moment to shutdown the embedded mongodb instance I get this: *WARNING: sendShutdown /127.0.0.1:27018 * *java.net.SocketException: Connection reset* Is it somehow a normal behavior ? Guilla

Re: [hibernate-dev] [OGM] Shutdown embedded MongoDB instance

2014-02-24 Thread Sanne Grinovero
I don't know if that's normal, but good catch: might be wise to investigate if all connections are closed appropriately. https://hibernate.atlassian.net/browse/OGM-467 On 24 February 2014 10:10, Guillaume SCHEIBEL wrote: > Hi guys, > > I'm working on OGM-303 and after having run the test suite

Re: [hibernate-dev] [OGM] Shutdown embedded MongoDB instance

2014-02-24 Thread Gunnar Morling
Hey Guillaume, Where do you see this message, in the console output of Maven? I don't see it on my machine. You might try to add the "-X" and/or "-e" parameters when running Maven, this may reveal the complete stacktrace. > https://hibernate.atlassian.net/browse/OGM-467 Thanks! --Gunnar 2014

Re: [hibernate-dev] OGM: fixing the build on Java8

2014-02-24 Thread Gunnar Morling
Thanks for having a look into this. I'd prefer if we fixed the JavaDoc issues, at least for those types which we consider API/SPI. There is https://hibernate.atlassian.net/browse/OGM-331for fixing JavaDoc issues such as broken links etc. --Gunnar 2014/2/23 Sanne Grinovero > It turns out OGM

Re: [hibernate-dev] [OGM] Shutdown embedded MongoDB instance

2014-02-24 Thread Guillaume SCHEIBEL
Hey Gunnar, The message error I sent was coming from a -X run. But I really don't think it's cause by our implementation because in the full stack trace [1] there is any org.hibernate.ogm reference. Do you want me to investigate further ? [1] => https://gist.github.com/gscheibel/9187360 Guillaum

Re: [hibernate-dev] [OGM] Shutdown embedded MongoDB instance

2014-02-24 Thread Gunnar Morling
Hi, would be nice to interesting to know the cause (if only to help the Flapdoodle team) but I wouldn't put too much time into it. As you say the issue is within the MongoDB launcher, I don't think there is anything which could be done from our side. --Gunnar 2014/2/24 Guillaume SCHEIBEL >

Re: [hibernate-dev] [OGM] Shutdown embedded MongoDB instance

2014-02-24 Thread Sanne Grinovero
Ok that looks like a non-critical bug in the EmbeddedMongoDB server, IMHO you could resolve OGM-467 by pasting that stacktrace as a comment on the JIRA issue. On 24 February 2014 12:19, Guillaume SCHEIBEL wrote: > Hey Gunnar, > > The message error I sent was coming from a -X run. > But I really d

[hibernate-dev] [OGM] OGM-303 Tests fail on Embedded MongoDB when on Windows PR

2014-02-24 Thread Guillaume SCHEIBEL
Hi guys, A pull request (#293 ) has been send about this issue. May someone confirm me that the test suite is still passing on non-Windows platforms ? Guillaume ___ hibernate-dev mailing list hibernat

Re: [hibernate-dev] OGM: fixing the build on Java8

2014-02-24 Thread Emmanuel Bernard
+1 for the commit as a first stage and then open a JIRA for a JavaDoc cleanup. Though the no self-closed HTML tag is beyond me. Emmanuel On Sat 2014-02-22 23:32, Sanne Grinovero wrote: > It turns out OGM isn't building on Java8 because of some new very > strict checks being performed on javadoc s

Re: [hibernate-dev] OGM: fixing the build on Java8

2014-02-24 Thread Steve Ebersole
Strict in what sense? I have played with using the asciidoc javadoc doclet support (mainly to make it easier to use annotations in code samples). Do you have any specific info on this new strictness? On Mon, Feb 24, 2014 at 7:22 AM, Emmanuel Bernard wrote: > +1 for the commit as a first stage

Re: [hibernate-dev] OGM: fixing the build on Java8

2014-02-24 Thread Steve Ebersole
Sorry, I see it now in the blog you linked. On Mon, Feb 24, 2014 at 7:40 AM, Steve Ebersole wrote: > Strict in what sense? I have played with using the asciidoc javadoc > doclet support (mainly to make it easier to use annotations in code > samples). Do you have any specific info on this new

Re: [hibernate-dev] [OGM] OGM-303 Tests fail on Embedded MongoDB when on Windows PR

2014-02-24 Thread Sanne Grinovero
Hi Guillaume, if that's all you need, you can watch: http://ci.hibernate.org/job/hibernate-ogm-PR/322/ the builds are triggered for each PR, and on github (on the pull request) you get a link to the build: it's highlighted in the colored merge box: "Merged build finished. · Details" Cheers, Sanne

Re: [hibernate-dev] [OGM] OGM-303 Tests fail on Embedded MongoDB when on Windows PR

2014-02-24 Thread Emmanuel Bernard
Guillaume, I think I have given you the ability to log in to ci.hibernate.org (github acocunt) and start a build if you need to. You can even create personal builds. For example I have one that looks for my perosnal repos and build new branches. Emmanuel On Mon 2014-02-24 13:41, Sanne Grinovero w

Re: [hibernate-dev] OGM: fixing the build on Java8

2014-02-24 Thread Hardy Ferentschik
Got also got a bunch of failures in HV with JDK8. Luckily a big part seems to be related to author tags of the form: @author name I’ll fix this and the remaining issues up shortly. I never likes this form of author syntax, especially since it was not valid HMTL ;-) Funny enough, we discusse