[docker] Use tmp paths for rsync and fix file_mounts on docker (#10368)

This commit is contained in:
Ian Rodney
2020-09-01 13:14:35 -07:00
committed by GitHub
parent 52a5ec99d0
commit 283f4d1060
7 changed files with 215 additions and 92 deletions
+2 -1
View File
@@ -257,7 +257,8 @@ inline ID JavaByteArrayToId(JNIEnv *env, const jbyteArray &bytes) {
env->GetByteArrayRegion(bytes, 0, ID::Size(),
reinterpret_cast<jbyte *>(&id_str.front()));
auto arr_size = env->GetArrayLength(bytes);
RAY_CHECK(arr_size == ID::Size()) << "ID length should be " << ID::Size() << " instead of " << arr_size;
RAY_CHECK(arr_size == ID::Size())
<< "ID length should be " << ID::Size() << " instead of " << arr_size;
return ID::FromBinary(id_str);
}