Skip to content

Commit

Permalink
Merge branch 'main' into fix_asv
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Aug 21, 2024
2 parents 61cdd20 + 37fc370 commit ce1239a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ jobs:
conda install --quiet --yes -c conda-forge skein libffi conda-pack grpcio=1.42.0
fi
if [[ "$MODULE" == "vineyard" ]]; then
pip install "vineyard<0.16.1" -i https://pypi.org/simple
pip install vineyard
mkdir -p /tmp/etcd-download-test
export ETCD_VER=v3.4.13
export ETCD_DOWNLOAD_URL=https://github.com/etcd-io/etcd/releases/download
Expand Down
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -153,5 +153,9 @@ asv/results

.DS_Store

#slrm.sh generated sh
# slurm.sh generated sh
python/xorbits/deploy/slurm/tests/slurm.sh

# vineyard & etcd

python/default.etcd/*
10 changes: 5 additions & 5 deletions python/xorbits/_mars/storage/vineyard.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,11 @@ async def setup(cls, **kwargs) -> Tuple[Dict, Dict]:
vineyard_store = None
else:
vineyard_store = vineyard.deploy.local.start_vineyardd(
etcd_endpoints,
etcd_prefix,
vineyardd_path,
vineyard_size,
vineyard_socket,
etcd_endpoints=etcd_endpoints,
etcd_prefix=etcd_prefix,
vineyardd_path=vineyardd_path,
size=vineyard_size,
socket=vineyard_socket,
rpc=False,
)
vineyard_socket = (
Expand Down

0 comments on commit ce1239a

Please sign in to comment.