org-mode tramp 执行代码块卡死

Org mode 通过 tramp 连接到 ssh 远程主机,执行以下代码块卡死,这是什么情况?

我可以执行简单的命令,但是这种就卡死

#+BEGIN_SRC sh :dir /ssh:user@remote-server: :session remote
ML_DIR='~/ml'

if [ ! -d "$ML_DIR" ]; then
    mkdir $ML_DIR
fi
#+END_SRC

org-mode 版本是最新的:Org mode version 9.1.14 (9.1.14-9-g131531-elpaplus @ /home/james/.emacs.d/elpa/26.1/develop/org-plus-contrib-20181119/)

刚才在 vanilla emacs 上试了一下,也是卡死。大家是什么情况?

Try without :session.