Skip to content

Commit

Permalink
feat:support run on k8s integration with framework.
Browse files Browse the repository at this point in the history
  • Loading branch information
2011shenlin committed Sep 22, 2024
1 parent 7096ba4 commit 97f5ff1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ private List<String> initPluginPath(String plugin){
}

private void loadPlugin(String path) {
Path pluginPath = Paths.get(path).toAbsolutePath();
Path pluginPath = Paths.get(path.replaceFirst("^~", System.getProperty("user.home"))).toAbsolutePath();
path = pluginPath.toString();
try {
if (Files.isDirectory(pluginPath)) {
Expand Down
2 changes: 1 addition & 1 deletion start/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ rocketmq.cluster.name=DefaultCluster
runtime.config.mode=DB
runtime.storage.mode=ROCKETMQ
rumtime.name=eventbridge-runtimer
runtime.pluginpath=/Users/jingluo.sl/eventbridge/plugin
runtime.pluginpath=~/eventbridge/plugin


## log
Expand Down

0 comments on commit 97f5ff1

Please sign in to comment.