We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed6e82a commit f0e9f0aCopy full SHA for f0e9f0a
runner-core/src/main/java/org/apache/apisix/plugin/runner/server/ApplicationRunner.java
@@ -114,7 +114,7 @@ public void start(String path) throws Exception {
114
try {
115
initServerBootstrap(bootstrap);
116
ChannelFuture future = bootstrap.bind(new DomainSocketAddress(path)).sync();
117
- Runtime.getRuntime().exec("chmod 777 " + socketFile);
+ Runtime.getRuntime().exec("chmod 700 " + socketFile);
118
logger.warn("java runner is listening on the socket file: {}", socketFile);
119
120
future.channel().closeFuture().sync();
0 commit comments