Repository: zeppelin Updated Branches: refs/heads/master e42a8c5c1 -> cbe68d227
[ZEPPELIN-1997] Added derbylog in .gitignore ### What is this PR for? Added derbylog in .gitignore Sometime created derby.log in bin directory. We should stop tracking derbylog derby.log ``` 1 ---------------------------------------------------------------- 2 Thu Jan 19 23:45:08 PST 2017: 3 Booting Derby version The Apache Software Foundation - Apache Derby - 10.10.2.0 - (1582446): instance a816c00e-0159-bad6-0f44-000030e6b528 4 on database directory /Users/cloverhearts/Source/nflabs/zeppelin/bin/metastore_db with class loader org.apache.spark.sql.hive.client.IsolatedClientLoader$$anon$174101877 5 Loaded from file:/Users/cloverhearts/Source/nflabs/zeppelin/interpreter/spark/dep/zeppelin-spark-dependencies_2.10-0.7.0-SNAPSHOT.jar 6 java.vendor=Oracle Corporation 7 java.runtime.version=1.8.0_101-b13 8 user.dir=/Users/cloverhearts/Source/nflabs/zeppelin/bin 9 os.name=Mac OS X 10 os.arch=x86_64 11 os.version=10.12.2 12 derby.system.home=null 13 Database Class Loader started - derby.database.classpath='' ``` ### What type of PR is it? Improvement ### What is the Jira issue? https://issues.apache.org/jira/browse/ZEPPELIN-1997 ### Questions: * Does the licenses files need update? no * Is there breaking changes for older versions? no * Does this needs documentation? no Author: cloverhearts <[email protected]> Closes #1929 from cloverhearts/ZEPPELIN-DERBYLOG and squashes the following commits: 666955e [cloverhearts] untraking all derby.log c59dd9b [cloverhearts] remove white space 8f4563e [cloverhearts] fixed my mistake e4765c9 [cloverhearts] added bin/derby.log in .gitignore Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/cbe68d22 Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/cbe68d22 Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/cbe68d22 Branch: refs/heads/master Commit: cbe68d227e9ea05b8bfc02527e7409d7cfb28358 Parents: e42a8c5 Author: cloverhearts <[email protected]> Authored: Thu Feb 2 14:18:46 2017 +0900 Committer: Jongyoul Lee <[email protected]> Committed: Sat Feb 4 17:39:50 2017 +0900 ---------------------------------------------------------------------- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zeppelin/blob/cbe68d22/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore index a2ed3e1..8db4291 100644 --- a/.gitignore +++ b/.gitignore @@ -11,14 +11,14 @@ !/interpreter/lib # interpreter temp files -spark/derby.log +derby.log spark/metastore_db spark-1.*-bin-hadoop* .spark-dist -zeppelin-server/derby.log lens/lens-cli-hist.log + # conf file conf/zeppelin-env.sh conf/zeppelin-env.cmd
