Repository: samza Updated Branches: refs/heads/master 33010a731 -> 4269d6213
Ignore java fatal error log files from git and rat Author: Prateek Maheshwari <[email protected]> Reviewers: Jacob Maes <[email protected]> Closes #354 from prateekm/rat-exclude-hserr Project: http://git-wip-us.apache.org/repos/asf/samza/repo Commit: http://git-wip-us.apache.org/repos/asf/samza/commit/4269d621 Tree: http://git-wip-us.apache.org/repos/asf/samza/tree/4269d621 Diff: http://git-wip-us.apache.org/repos/asf/samza/diff/4269d621 Branch: refs/heads/master Commit: 4269d62134758bd2ea8ad70df976f1539d92c392 Parents: 33010a7 Author: Prateek Maheshwari <[email protected]> Authored: Thu Nov 9 10:45:04 2017 -0800 Committer: Prateek Maheshwari <[email protected]> Committed: Thu Nov 9 10:45:04 2017 -0800 ---------------------------------------------------------------------- .gitignore | 3 ++- build.gradle | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/samza/blob/4269d621/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore index c2e9180..531878e 100644 --- a/.gitignore +++ b/.gitignore @@ -29,4 +29,5 @@ docs/learn/documentation/*/rest/javadocs out/ *.patch **.pyc -samza-shell/src/main/visualizer/plan.json \ No newline at end of file +samza-shell/src/main/visualizer/plan.json +**/hs_err_pid*.log \ No newline at end of file http://git-wip-us.apache.org/repos/asf/samza/blob/4269d621/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index d9025c4..da08ee9 100644 --- a/build.gradle +++ b/build.gradle @@ -52,6 +52,7 @@ rat { '**/*.svg', '**/*.ttf', '**/*.woff', + '**/hs_err_pid*.log', '**/.classpath', '**/.cache/**', '**/.git/**', @@ -89,7 +90,6 @@ rat { 'samza-hdfs/src/main/resources/**', 'samza-hdfs/src/test/resources/**', 'out/**', - 'hs_err_pid*.log', 'state/**' ] }
