Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

  • Make your code changes
  • Test. Test again and we forget to mention: Test
  • If your code change works make a patch
Code Block

git diff --no-prefix > /Path/to/your/patch/JIRA-ID.patch
  • If you want to work at other patches, go and stash your work:
Code Block

git stash (will save your branch and reset the working directory)
  • Attach the file JIRA-ID.patch to the jiraJira
  • Open a review request at https://reviews.apache.org against flume-git
    • Fill in the field Bug-ID the Jira-ID to link both together
    • Explain your code
    • Add unit tests
      • please note, patches without a working unit test will be rejected and not commited
    • fill out all the fields
    • Check your Diff by clicking "View Diff"
      • if you see some red fields, check your syntax and fix this please
    • review your request
    • publish
  • Post the review link into the Jira
  • Write Notes into the Jira, regarding your work

Known Build Issues

Code Block
Exception in thread "MainThread" java.lang.OutOfMemoryError: PermGen space

Maven2 Issue, start your build with:

Code Block
MAVEN_OPTS="-Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m" mvn package -DskipTests

Jira: FlUME-1256

Thank you for contributing Flume!