You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hugegraph.apache.org by GitBox <gi...@apache.org> on 2022/10/30 14:04:09 UTC

[GitHub] [incubator-hugegraph-computer] z7658329 opened a new pull request, #191: support check license header with RAT

z7658329 opened a new pull request, #191:
URL: https://github.com/apache/incubator-hugegraph-computer/pull/191

   support check license header with RAT


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-computer] imbajin commented on a diff in pull request #191: support check license header with RAT

Posted by GitBox <gi...@apache.org>.
imbajin commented on code in PR #191:
URL: https://github.com/apache/incubator-hugegraph-computer/pull/191#discussion_r1009126695


##########
pom.xml:
##########
@@ -207,6 +207,49 @@
 
     <build>
         <plugins>
+            <!-- Apache RAT for license check -->
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/*.versionsBackup</exclude>
+                        <exclude>**/*.proto</exclude>
+                        <exclude>**/*.log</exclude>
+                        <exclude>**/*.txt</exclude>
+                        <exclude>**/*.json</exclude>
+                        <exclude>**/*.conf</exclude>
+                        <exclude>**/*.map</exclude>
+                        <exclude>**/go.mod</exclude>
+                        <exclude>**/go.sum</exclude>
+                        <exclude>**/*.properties</exclude>
+                        <exclude>dist/**/*</exclude>
+                        <exclude>**/assembly/static/bin/hugegraph.service</exclude>
+                        <exclude>scripts/dev/reviewers</exclude>
+                        <exclude>scripts/dev/reviewers</exclude>
+                        <exclude>**/*.md</exclude>
+                        <exclude>**/dependency-reduced-pom.xml</exclude>
+                        <exclude>**/logs/*.log</exclude>
+                        <exclude>**/META-INF/**/*</exclude>
+                        <exclude>**/target/*</exclude>
+                        <exclude>style/*</exclude>
+                        <exclude>ChangeLog</exclude>
+                        <exclude>CONFIG.ini</exclude>
+                        <exclude>GROUPS</exclude>
+                        <exclude>OWNERS</exclude>
+                        <!-- GitHub -->
+                        <exclude>.github/**/*</exclude>
+                        <!-- Intellij -->
+                        <exclude>**/*.iml</exclude>
+                        <exclude>**/*.iws</exclude>
+                        <exclude>**/*.ipr</exclude>
+                        <exclude>**/META-INF/MANIFEST.MF</exclude>
+                        <!-- Maven -->
+                        <exclude>.repository/**</exclude>

Review Comment:
   no need to check & remove them now, enhance later if need (just remove duplicate items)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-computer] imbajin commented on a diff in pull request #191: support check license header with RAT

Posted by GitBox <gi...@apache.org>.
imbajin commented on code in PR #191:
URL: https://github.com/apache/incubator-hugegraph-computer/pull/191#discussion_r1009126695


##########
pom.xml:
##########
@@ -207,6 +207,49 @@
 
     <build>
         <plugins>
+            <!-- Apache RAT for license check -->
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/*.versionsBackup</exclude>
+                        <exclude>**/*.proto</exclude>
+                        <exclude>**/*.log</exclude>
+                        <exclude>**/*.txt</exclude>
+                        <exclude>**/*.json</exclude>
+                        <exclude>**/*.conf</exclude>
+                        <exclude>**/*.map</exclude>
+                        <exclude>**/go.mod</exclude>
+                        <exclude>**/go.sum</exclude>
+                        <exclude>**/*.properties</exclude>
+                        <exclude>dist/**/*</exclude>
+                        <exclude>**/assembly/static/bin/hugegraph.service</exclude>
+                        <exclude>scripts/dev/reviewers</exclude>
+                        <exclude>scripts/dev/reviewers</exclude>
+                        <exclude>**/*.md</exclude>
+                        <exclude>**/dependency-reduced-pom.xml</exclude>
+                        <exclude>**/logs/*.log</exclude>
+                        <exclude>**/META-INF/**/*</exclude>
+                        <exclude>**/target/*</exclude>
+                        <exclude>style/*</exclude>
+                        <exclude>ChangeLog</exclude>
+                        <exclude>CONFIG.ini</exclude>
+                        <exclude>GROUPS</exclude>
+                        <exclude>OWNERS</exclude>
+                        <!-- GitHub -->
+                        <exclude>.github/**/*</exclude>
+                        <!-- Intellij -->
+                        <exclude>**/*.iml</exclude>
+                        <exclude>**/*.iws</exclude>
+                        <exclude>**/*.ipr</exclude>
+                        <exclude>**/META-INF/MANIFEST.MF</exclude>
+                        <!-- Maven -->
+                        <exclude>.repository/**</exclude>

Review Comment:
   no need to remove them now, enhance later if need (just remove duplicate items)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-computer] imbajin commented on pull request #191: support check license header with RAT

Posted by GitBox <gi...@apache.org>.
imbajin commented on PR #191:
URL: https://github.com/apache/incubator-hugegraph-computer/pull/191#issuecomment-1296951078

   > @imbajin Can we remove travis-Ci?
   
   after #190 merged, the `travis-CI` will disappear


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-computer] z7658329 commented on pull request #191: support check license header with RAT

Posted by GitBox <gi...@apache.org>.
z7658329 commented on PR #191:
URL: https://github.com/apache/incubator-hugegraph-computer/pull/191#issuecomment-1297924805

   is there something wrong?  the last commit only remove unused code @coderzc 
   <img width="1033" alt="image" src="https://user-images.githubusercontent.com/5474723/199143528-a1270495-f65c-45a8-9c3d-15b0544b8e55.png">
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-computer] coderzc commented on a diff in pull request #191: support check license header with RAT

Posted by GitBox <gi...@apache.org>.
coderzc commented on code in PR #191:
URL: https://github.com/apache/incubator-hugegraph-computer/pull/191#discussion_r1009293298


##########
pom.xml:
##########
@@ -207,6 +207,49 @@
 
     <build>
         <plugins>
+            <!-- Apache RAT for license check -->
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/*.versionsBackup</exclude>
+                        <exclude>**/*.proto</exclude>
+                        <exclude>**/*.log</exclude>
+                        <exclude>**/*.txt</exclude>
+                        <exclude>**/*.json</exclude>
+                        <exclude>**/*.conf</exclude>
+                        <exclude>**/*.map</exclude>
+                        <exclude>**/go.mod</exclude>
+                        <exclude>**/go.sum</exclude>
+                        <exclude>**/*.properties</exclude>
+                        <exclude>dist/**/*</exclude>
+                        <exclude>**/assembly/static/bin/hugegraph.service</exclude>
+                        <exclude>scripts/dev/reviewers</exclude>
+                        <exclude>scripts/dev/reviewers</exclude>
+                        <exclude>**/*.md</exclude>
+                        <exclude>**/dependency-reduced-pom.xml</exclude>
+                        <exclude>**/logs/*.log</exclude>
+                        <exclude>**/META-INF/**/*</exclude>
+                        <exclude>**/target/*</exclude>
+                        <exclude>style/*</exclude>
+                        <exclude>ChangeLog</exclude>
+                        <exclude>CONFIG.ini</exclude>
+                        <exclude>GROUPS</exclude>
+                        <exclude>OWNERS</exclude>
+                        <!-- GitHub -->
+                        <exclude>.github/**/*</exclude>
+                        <!-- Intellij -->
+                        <exclude>**/*.iml</exclude>
+                        <exclude>**/*.iws</exclude>
+                        <exclude>**/*.ipr</exclude>
+                        <exclude>**/META-INF/MANIFEST.MF</exclude>
+                        <!-- Maven -->
+                        <exclude>.repository/**</exclude>

Review Comment:
   I see.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-computer] z7658329 commented on a diff in pull request #191: support check license header with RAT

Posted by GitBox <gi...@apache.org>.
z7658329 commented on code in PR #191:
URL: https://github.com/apache/incubator-hugegraph-computer/pull/191#discussion_r1009304494


##########
pom.xml:
##########
@@ -207,6 +207,49 @@
 
     <build>
         <plugins>
+            <!-- Apache RAT for license check -->
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/*.versionsBackup</exclude>
+                        <exclude>**/*.proto</exclude>
+                        <exclude>**/*.log</exclude>
+                        <exclude>**/*.txt</exclude>
+                        <exclude>**/*.json</exclude>
+                        <exclude>**/*.conf</exclude>
+                        <exclude>**/*.map</exclude>
+                        <exclude>**/go.mod</exclude>
+                        <exclude>**/go.sum</exclude>
+                        <exclude>**/*.properties</exclude>
+                        <exclude>dist/**/*</exclude>
+                        <exclude>**/assembly/static/bin/hugegraph.service</exclude>
+                        <exclude>scripts/dev/reviewers</exclude>
+                        <exclude>scripts/dev/reviewers</exclude>
+                        <exclude>**/*.md</exclude>
+                        <exclude>**/dependency-reduced-pom.xml</exclude>
+                        <exclude>**/logs/*.log</exclude>
+                        <exclude>**/META-INF/**/*</exclude>
+                        <exclude>**/target/*</exclude>
+                        <exclude>style/*</exclude>
+                        <exclude>ChangeLog</exclude>
+                        <exclude>CONFIG.ini</exclude>
+                        <exclude>GROUPS</exclude>
+                        <exclude>OWNERS</exclude>
+                        <!-- GitHub -->
+                        <exclude>.github/**/*</exclude>
+                        <!-- Intellij -->
+                        <exclude>**/*.iml</exclude>
+                        <exclude>**/*.iws</exclude>
+                        <exclude>**/*.ipr</exclude>
+                        <exclude>**/META-INF/MANIFEST.MF</exclude>
+                        <!-- Maven -->
+                        <exclude>.repository/**</exclude>

Review Comment:
   > 
   
   get it



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-computer] imbajin commented on a diff in pull request #191: support check license header with RAT

Posted by GitBox <gi...@apache.org>.
imbajin commented on code in PR #191:
URL: https://github.com/apache/incubator-hugegraph-computer/pull/191#discussion_r1009127721


##########
pom.xml:
##########
@@ -207,6 +207,49 @@
 
     <build>
         <plugins>
+            <!-- Apache RAT for license check -->
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/*.versionsBackup</exclude>
+                        <exclude>**/*.proto</exclude>
+                        <exclude>**/*.log</exclude>
+                        <exclude>**/*.txt</exclude>
+                        <exclude>**/*.json</exclude>
+                        <exclude>**/*.conf</exclude>
+                        <exclude>**/*.map</exclude>
+                        <exclude>**/go.mod</exclude>
+                        <exclude>**/go.sum</exclude>
+                        <exclude>**/*.properties</exclude>
+                        <exclude>dist/**/*</exclude>
+                        <exclude>**/assembly/static/bin/hugegraph.service</exclude>
+                        <exclude>scripts/dev/reviewers</exclude>
+                        <exclude>scripts/dev/reviewers</exclude>
+                        <exclude>**/*.md</exclude>
+                        <exclude>**/dependency-reduced-pom.xml</exclude>
+                        <exclude>**/logs/*.log</exclude>
+                        <exclude>**/META-INF/**/*</exclude>
+                        <exclude>**/target/*</exclude>
+                        <exclude>style/*</exclude>
+                        <exclude>ChangeLog</exclude>
+                        <exclude>CONFIG.ini</exclude>
+                        <exclude>GROUPS</exclude>
+                        <exclude>OWNERS</exclude>
+                        <!-- GitHub -->
+                        <exclude>.github/**/*</exclude>
+                        <!-- Intellij -->
+                        <exclude>**/*.iml</exclude>
+                        <exclude>**/*.iws</exclude>
+                        <exclude>**/*.ipr</exclude>
+                        <exclude>**/META-INF/MANIFEST.MF</exclude>
+                        <!-- Maven -->
+                        <exclude>.repository/**</exclude>

Review Comment:
   we need move to next step quickly
   
   Like adopt the client/commons/server dependencies



##########
pom.xml:
##########
@@ -207,6 +207,49 @@
 
     <build>
         <plugins>
+            <!-- Apache RAT for license check -->
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/*.versionsBackup</exclude>
+                        <exclude>**/*.proto</exclude>
+                        <exclude>**/*.log</exclude>
+                        <exclude>**/*.txt</exclude>
+                        <exclude>**/*.json</exclude>
+                        <exclude>**/*.conf</exclude>
+                        <exclude>**/*.map</exclude>
+                        <exclude>**/go.mod</exclude>
+                        <exclude>**/go.sum</exclude>
+                        <exclude>**/*.properties</exclude>
+                        <exclude>dist/**/*</exclude>
+                        <exclude>**/assembly/static/bin/hugegraph.service</exclude>
+                        <exclude>scripts/dev/reviewers</exclude>
+                        <exclude>scripts/dev/reviewers</exclude>
+                        <exclude>**/*.md</exclude>
+                        <exclude>**/dependency-reduced-pom.xml</exclude>
+                        <exclude>**/logs/*.log</exclude>
+                        <exclude>**/META-INF/**/*</exclude>
+                        <exclude>**/target/*</exclude>
+                        <exclude>style/*</exclude>
+                        <exclude>ChangeLog</exclude>
+                        <exclude>CONFIG.ini</exclude>
+                        <exclude>GROUPS</exclude>
+                        <exclude>OWNERS</exclude>
+                        <!-- GitHub -->
+                        <exclude>.github/**/*</exclude>
+                        <!-- Intellij -->
+                        <exclude>**/*.iml</exclude>
+                        <exclude>**/*.iws</exclude>
+                        <exclude>**/*.ipr</exclude>
+                        <exclude>**/META-INF/MANIFEST.MF</exclude>
+                        <!-- Maven -->
+                        <exclude>.repository/**</exclude>

Review Comment:
   we need move to next step soon
   
   Like adopt the client/commons/server dependencies



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-computer] imbajin commented on pull request #191: support check license header with RAT

Posted by GitBox <gi...@apache.org>.
imbajin commented on PR #191:
URL: https://github.com/apache/incubator-hugegraph-computer/pull/191#issuecomment-1298267509

   @coderzc seems u need to update the prepare shell (adopt the latest loader code)
   
   <img width="1113" alt="image" src="https://user-images.githubusercontent.com/17706099/199204018-0147830f-0a75-43ab-ac8b-b69059c0e886.png">
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-computer] coderzc commented on pull request #191: support check license header with RAT

Posted by GitBox <gi...@apache.org>.
coderzc commented on PR #191:
URL: https://github.com/apache/incubator-hugegraph-computer/pull/191#issuecomment-1296931626

   > still have some problems, @coderzc https://app.travis-ci.com/github/apache/incubator-hugegraph-computer/builds/257244354
   > 
   > ![image](https://user-images.githubusercontent.com/5474723/198992605-622a330a-66ac-4c9d-ba7e-a61e9271a3e2.png)
   
   @imbajin Can we remove travis-Ci?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-computer] imbajin commented on pull request #191: support check license header with RAT

Posted by GitBox <gi...@apache.org>.
imbajin commented on PR #191:
URL: https://github.com/apache/incubator-hugegraph-computer/pull/191#issuecomment-1298125574

   > is there something wrong?  the last commit only remove unused code @coderzc 
   > <img width="1033" alt="image" src="https://user-images.githubusercontent.com/5474723/199143528-a1270495-f65c-45a8-9c3d-15b0544b8e55.png">
   > 
   
   try rerun it,network may bad sometime


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-computer] coderzc commented on a diff in pull request #191: support check license header with RAT

Posted by GitBox <gi...@apache.org>.
coderzc commented on code in PR #191:
URL: https://github.com/apache/incubator-hugegraph-computer/pull/191#discussion_r1009013469


##########
pom.xml:
##########
@@ -207,6 +207,49 @@
 
     <build>
         <plugins>
+            <!-- Apache RAT for license check -->
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <configuration>
+                    <excludes>
+                        <exclude>**/*.versionsBackup</exclude>
+                        <exclude>**/*.proto</exclude>
+                        <exclude>**/*.log</exclude>
+                        <exclude>**/*.txt</exclude>
+                        <exclude>**/*.json</exclude>
+                        <exclude>**/*.conf</exclude>
+                        <exclude>**/*.map</exclude>
+                        <exclude>**/go.mod</exclude>
+                        <exclude>**/go.sum</exclude>
+                        <exclude>**/*.properties</exclude>
+                        <exclude>dist/**/*</exclude>
+                        <exclude>**/assembly/static/bin/hugegraph.service</exclude>
+                        <exclude>scripts/dev/reviewers</exclude>
+                        <exclude>scripts/dev/reviewers</exclude>
+                        <exclude>**/*.md</exclude>
+                        <exclude>**/dependency-reduced-pom.xml</exclude>
+                        <exclude>**/logs/*.log</exclude>
+                        <exclude>**/META-INF/**/*</exclude>
+                        <exclude>**/target/*</exclude>
+                        <exclude>style/*</exclude>
+                        <exclude>ChangeLog</exclude>
+                        <exclude>CONFIG.ini</exclude>
+                        <exclude>GROUPS</exclude>
+                        <exclude>OWNERS</exclude>
+                        <!-- GitHub -->
+                        <exclude>.github/**/*</exclude>
+                        <!-- Intellij -->
+                        <exclude>**/*.iml</exclude>
+                        <exclude>**/*.iws</exclude>
+                        <exclude>**/*.ipr</exclude>
+                        <exclude>**/META-INF/MANIFEST.MF</exclude>
+                        <!-- Maven -->
+                        <exclude>.repository/**</exclude>

Review Comment:
   Check and remove paths of don't exist
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-computer] imbajin merged pull request #191: chore: support check license header with RAT

Posted by GitBox <gi...@apache.org>.
imbajin merged PR #191:
URL: https://github.com/apache/incubator-hugegraph-computer/pull/191


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-computer] codecov[bot] commented on pull request #191: support check license header with RAT

Posted by GitBox <gi...@apache.org>.
codecov[bot] commented on PR #191:
URL: https://github.com/apache/incubator-hugegraph-computer/pull/191#issuecomment-1296288613

   # [Codecov](https://codecov.io/gh/apache/incubator-hugegraph-computer/pull/191?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) Report
   > Merging [#191](https://codecov.io/gh/apache/incubator-hugegraph-computer/pull/191?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) (bdaa161) into [master](https://codecov.io/gh/apache/incubator-hugegraph-computer/commit/180051786606fe7c93fcee66f66c50a6864072bf?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) (1800517) will **decrease** coverage by `0.01%`.
   > The diff coverage is `n/a`.
   
   ```diff
   @@             Coverage Diff              @@
   ##             master     #191      +/-   ##
   ============================================
   - Coverage     86.12%   86.10%   -0.02%     
   + Complexity     3212     3210       -2     
   ============================================
     Files           341      341              
     Lines         12200    12200              
     Branches       1085     1085              
   ============================================
   - Hits          10507    10505       -2     
     Misses         1171     1171              
   - Partials        522      524       +2     
   ```
   
   
   | [Impacted Files](https://codecov.io/gh/apache/incubator-hugegraph-computer/pull/191?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) | Coverage Δ | |
   |---|---|---|
   | [...puter/core/network/netty/AbstractNettyHandler.java](https://codecov.io/gh/apache/incubator-hugegraph-computer/pull/191/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-Y29tcHV0ZXItY29yZS9zcmMvbWFpbi9qYXZhL2NvbS9iYWlkdS9odWdlZ3JhcGgvY29tcHV0ZXIvY29yZS9uZXR3b3JrL25ldHR5L0Fic3RyYWN0TmV0dHlIYW5kbGVyLmphdmE=) | `47.50% <ø> (ø)` | |
   | [...idu/hugegraph/computer/core/util/ShutdownHook.java](https://codecov.io/gh/apache/incubator-hugegraph-computer/pull/191/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-Y29tcHV0ZXItY29yZS9zcmMvbWFpbi9qYXZhL2NvbS9iYWlkdS9odWdlZ3JhcGgvY29tcHV0ZXIvY29yZS91dGlsL1NodXRkb3duSG9vay5qYXZh) | `66.66% <ø> (ø)` | |
   | [...hugegraph/computer/core/network/TransportUtil.java](https://codecov.io/gh/apache/incubator-hugegraph-computer/pull/191/diff?src=pr&el=tree&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation#diff-Y29tcHV0ZXItY29yZS9zcmMvbWFpbi9qYXZhL2NvbS9iYWlkdS9odWdlZ3JhcGgvY29tcHV0ZXIvY29yZS9uZXR3b3JrL1RyYW5zcG9ydFV0aWwuamF2YQ==) | `88.57% <0.00%> (-2.86%)` | :arrow_down: |
   
   :mega: We’re building smart automated test selection to slash your CI/CD build times. [Learn more](https://about.codecov.io/iterative-testing/?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-hugegraph-computer] z7658329 commented on pull request #191: support check license header with RAT

Posted by GitBox <gi...@apache.org>.
z7658329 commented on PR #191:
URL: https://github.com/apache/incubator-hugegraph-computer/pull/191#issuecomment-1296920033

   still have some problems, @coderzc  
   https://app.travis-ci.com/github/apache/incubator-hugegraph-computer/builds/257244354
   
   ![image](https://user-images.githubusercontent.com/5474723/198992605-622a330a-66ac-4c9d-ba7e-a61e9271a3e2.png)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@hugegraph.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org