You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@linkis.apache.org by ca...@apache.org on 2022/07/04 06:07:09 UTC

[incubator-linkis] branch dev-1.2.0 updated: [ISSUE 2389] Fixed the bug in the linkis-ps-metadataquery module (#2398)

This is an automated email from the ASF dual-hosted git repository.

casion pushed a commit to branch dev-1.2.0
in repository https://gitbox.apache.org/repos/asf/incubator-linkis.git


The following commit(s) were added to refs/heads/dev-1.2.0 by this push:
     new 10ee01de4 [ISSUE 2389] Fixed the bug in the linkis-ps-metadataquery module (#2398)
10ee01de4 is described below

commit 10ee01de40b130cc77ea941a9d1628388f71ed2c
Author: yyuser5201314 <63...@users.noreply.github.com>
AuthorDate: Mon Jul 4 14:07:03 2022 +0800

    [ISSUE 2389] Fixed the bug in the linkis-ps-metadataquery module (#2398)
    
    * fix-bug #2389 Fixed the bug in the linkis-ps-metadataquery module that was missing after packaging
---
 linkis-dist/bin/checkEnv.sh                    |  2 +-
 linkis-dist/package/sbin/graceful-upgrade.sh   |  4 ++--
 linkis-dist/src/main/assembly/distribution.xml | 12 ++++++------
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/linkis-dist/bin/checkEnv.sh b/linkis-dist/bin/checkEnv.sh
index 04302bece..61c49406c 100644
--- a/linkis-dist/bin/checkEnv.sh
+++ b/linkis-dist/bin/checkEnv.sh
@@ -139,7 +139,7 @@ check_service_port
 SERVER_PORT=$DATASOURCE_MANAGER_PORT
 check_service_port
 
-SERVER_PORT=$METADATA_MANAGER_PORT
+SERVER_PORT=$METADATA_QUERY_PORT
 check_service_port
 
 if [ "$portIsOccupy" = true ];then
diff --git a/linkis-dist/package/sbin/graceful-upgrade.sh b/linkis-dist/package/sbin/graceful-upgrade.sh
index d5c2ddd48..233d86fb5 100644
--- a/linkis-dist/package/sbin/graceful-upgrade.sh
+++ b/linkis-dist/package/sbin/graceful-upgrade.sh
@@ -60,8 +60,8 @@ function getPort(){
     "ps-data-source-manager")
       export SERVER_PORT=$DATASOURCE_MANAGER_PORT
       ;;
-    "ps-metadatamanager")
-      export SERVER_PORT=$METADATA_MANAGER_PORT
+    "ps-metadataquery")
+      export SERVER_PORT=$METADATA_QUERY_PORT
       ;;
   esac
 }
diff --git a/linkis-dist/src/main/assembly/distribution.xml b/linkis-dist/src/main/assembly/distribution.xml
index a4b5462ba..38e3cc313 100644
--- a/linkis-dist/src/main/assembly/distribution.xml
+++ b/linkis-dist/src/main/assembly/distribution.xml
@@ -6,9 +6,9 @@
   ~ The ASF licenses this file to You under the Apache License, Version 2.0
   ~ (the "License"); you may not use this file except in compliance with
   ~ the License.  You may obtain a copy of the License at
-  ~ 
+  ~
   ~   http://www.apache.org/licenses/LICENSE-2.0
-  ~ 
+  ~
   ~ Unless required by applicable law or agreed to in writing, software
   ~ distributed under the License is distributed on an "AS IS" BASIS,
   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -269,13 +269,13 @@
                 <include>*.jar</include>
             </includes>
         </fileSet>
-        <!-- metadata manager -->
+        <!-- metadata query -->
         <fileSet>
             <directory>
-                ../linkis-public-enhancements/linkis-datasource/linkis-metadata-manager/server/target/out/lib/
+                ../linkis-public-enhancements/linkis-datasource/linkis-metadata-query/server/target/out/lib/
             </directory>
             <outputDirectory>
-                linkis-package/lib/linkis-public-enhancements/linkis-ps-metadatamanager
+                linkis-package/lib/linkis-public-enhancements/linkis-ps-metadataquery
             </outputDirectory>
             <includes>
                 <include>**/*</include>
@@ -297,4 +297,4 @@
         </dependencySet>
     </dependencySets>
 
-</assembly>
\ No newline at end of file
+</assembly>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@linkis.apache.org
For additional commands, e-mail: commits-help@linkis.apache.org