Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
52 views

Can a git repository be corrupted if a command modifying it crashes or is aborted?

When playing around with git, I sometimes try out things, then abort commands which take too long (e.g. some git svn commands that hang during network problems). This got me thinking: Is it always ...
4
votes
4answers
262 views

how to protect my process from being killed?

we have a mission-critical server program on top of linux, and we dont't want others to terminate it accidentally. If somebody terminates it or it crashes, we want it to restart. So we plan to write ...
2
votes
2answers
117 views

Running JUnit 4 Tests Parallel With FailSafe & SureFire plugins

We have a profile created in maven to run our Selenium junit4 type tests and below is the snippet of it without the executions tag. <profile> <id>selenium-tests</id> <build> ...
2
votes
1answer
89 views

Failsafe Coding

The question rises when the person accessing a website, does not or can not complete a server process. Like photo uploading, registering, blogging, or other. The reasons behind it? Where to get ...
2
votes
1answer
318 views

Integration tests wouldn't start (Failsafe, Maven)

I'm trying to use Maven Failsafe Plugin to run my integration tests with this configuration: <plugin> <artifactId>maven-failsafe-plugin</artifactId> ...
2
votes
3answers
821 views

Maven Multi-Module builds not honoring failsafe-maven-plugin?

I recently discovered that Hudson was not the problem. In actuality it was Maven itself as the multi-module build was causing the build failure, not Hudson. I just hadn't noticed where the issue ...
1
vote
0answers
276 views

Does MacBook Air's SSD fail? [closed]

I have seen many discussions describing SSD as fail-prone. I have read Jeff Atwood's warnings. Portman Wills' experiment looks alarming: Super Talent 32 GB SSD, failed after 137 days OCZ Vertex 1 ...
1
vote
1answer
196 views

Maven is not using failsafe plugin for integration tests

When I run "mvn clean install", for the integration-test phase it does not use the failsafe plugin. However if i explicilty call the plugin to run the integration test, it works ("mvn ...
1
vote
1answer
141 views

Can I run post processing on my maven integration test results if there are test failures?

I want to extend a maven2 POM to run some post processing on my integration test results. I added a java:exec plugin and bound it to the post-integration-test phase. All is fine when the tests pass ...
0
votes
1answer
31 views

Handling exceptions that are caused by logging

We all know that logging is very important, and that there are a multitude of potential places to log to. (e.g. a file, a database, the event log, ...) However, what do you do when the logging itself ...
0
votes
0answers
75 views

Prevent “The process cannot access the file 'C:\inetpub\wwwroot\Web.SiteMap'”

On my website, the web.sitemap is dynamically generated so that dynamic pages appear in the breadcrumbs and sitemap throughout the site. The issue is, however, that when the sitemap is generated, if ...
0
votes
1answer
380 views

Jetty doesn't start in pre-integration-test phase (Maven)

I'm trying to use Maven Failsafe Plugin to run my functional/integration tests, according to this guide: http://docs.codehaus.org/display/MAVENUSER/Maven+and+Integration+Testing, chapter Using the ...
0
votes
1answer
387 views

maven2 - why failesafe plugin is ignoring my junit annotations?

I have set up a java/maven project in order to perform tests this way: unit tests are executed with the surefire plugin integration tests are executed with the failsafe plugin here is the POM ...
0
votes
1answer
61 views

Fail safe code for cgi python scripts

Coming from mostly C++ I'm relatively new to python and probably far from thinking in pythonic ways. Recently my web hoster activated python as cgi for my web space. I got an email asking me to test ...
0
votes
1answer
61 views

fail-safe .htaccess?

I've recently had to put some code into a different server and my .htaccess file fails miserably. I can stripe out all the parts I don't need but the thing is I'd like to have it on source-control ...