Skip to content

Commit 86257db

Browse files
committed
chore(node): support node 10
1 parent 5a33483 commit 86257db

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

bin/proxy/master.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ process.on('unhandledRejection', (errorOrReason, currPromise) => {
7575
}
7676
});
7777

78-
process.noProcessWarnings = true;
79-
8078

8179
startServer();
8280

bin/proxy/startup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ pwd
4545
IS_DOCKER=${IS_DOCKER:=0}
4646
if [ ${IS_DOCKER} = 1 ]
4747
then
48-
./TSW --expose_internals $CUR_ARGS ./proxy >> ../log/run.log.0 2>&1
48+
./TSW --expose_internals --no-deprecation $CUR_ARGS ./proxy >> ../log/run.log.0 2>&1
4949
else
50-
./TSW --expose_internals $CUR_ARGS ./proxy >> ../log/run.log.0 2>&1 &
50+
./TSW --expose_internals --no-deprecation $CUR_ARGS ./proxy >> ../log/run.log.0 2>&1 &
5151
echo start down
5252
fi
5353

0 commit comments

Comments
 (0)