You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@kylin.apache.org by GitBox <gi...@apache.org> on 2018/12/23 05:21:05 UTC

[GitHub] allenma closed pull request #412: KYLIN-3730 TableMetadataManager.reloadSourceTableQuietly is wrong

allenma closed pull request #412: KYLIN-3730 TableMetadataManager.reloadSourceTableQuietly is wrong
URL: https://github.com/apache/kylin/pull/412
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/core-metadata/src/main/java/org/apache/kylin/metadata/TableMetadataManager.java b/core-metadata/src/main/java/org/apache/kylin/metadata/TableMetadataManager.java
index 0126c0d060..457c046673 100644
--- a/core-metadata/src/main/java/org/apache/kylin/metadata/TableMetadataManager.java
+++ b/core-metadata/src/main/java/org/apache/kylin/metadata/TableMetadataManager.java
@@ -154,7 +154,7 @@ public void onEntityChange(Broadcaster broadcaster, String entity, Event event,
 
     public void reloadSourceTableQuietly(String table, String project) {
         try (AutoLock lock = srcTableMapLock.lockForWrite()) {
-            srcTableCrud.reloadQuietly(TableDesc.concatResourcePath(table, project));
+            srcTableCrud.reloadQuietly(TableDesc.makeResourceName(table, project));
         }
     }
 


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services