-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Closed
Description
environment
- canal version: 1.1.7
- mysql version: 5.7
Issue Description
- The
client-adapter/launcher/src/main/bin/restart.sh
file does not accept arguments. So that we cannot pass the debug options to thestartup.sh
script.
canal/client-adapter/launcher/src/main/bin/restart.sh
Lines 2 to 13 in ea89492
case $(uname) in | |
Linux) | |
bin_abs_path=$(readlink -f $(dirname $0)) | |
;; | |
*) | |
bin_abs_path=$(cd $(dirname $0) ||exit ; pwd) | |
;; | |
esac | |
sh "$bin_abs_path"/stop.sh | |
sh "$bin_abs_path"/startup.sh |