We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c245a98 commit 7f33052Copy full SHA for 7f33052
integration-test-common/src/test/java/org/apache/gravitino/integration/test/util/BaseIT.java
@@ -381,7 +381,6 @@ protected String readGitCommitIdFromGitFile() {
381
String gravitinoHome = System.getenv("GRAVITINO_HOME");
382
String gitFolder = gravitinoHome + File.separator + ".git" + File.separator;
383
String headFileContent = FileUtils.readFileToString(new File(gitFolder + "HEAD"), "UTF-8");
384
- LOG.error("\n\n\noooooooooooooooooooooooooooooooooooooooooooooooooooooo" + headFileContent);
385
String[] refAndBranch = headFileContent.split(":");
386
if (refAndBranch.length == 1) {
387
return refAndBranch[0].trim();
0 commit comments