public void run()

in runner-core/src/main/java/org/apache/apisix/plugin/runner/server/ApplicationRunner.java [144:151]


    public void run(String... args) throws Exception {
        if (socketFile.startsWith("unix:")) {
            socketFile = socketFile.substring("unix:".length());
        }
        Path socketPath = Paths.get(socketFile);
        Files.deleteIfExists(socketPath);
        start(socketPath.toString());
    }