Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix failure on macOS CI #1304

Merged
merged 1 commit into from
Jan 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/build-graphscope-wheels-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ jobs:

- name: Install Dependencies
run: |
pushd $(brew --repo homebrew/core)
# fixed protobuf version 3.17.3
git checkout 2b411d925849478163647594b32fd237828cf720
popd
${GITHUB_WORKSPACE}/scripts/install_deps.sh --dev --vineyard_prefix /opt/vineyard --verbose

- name: Build Server Wheel
Expand Down Expand Up @@ -68,6 +72,10 @@ jobs:

- name: Install Dependencies
run: |
pushd $(brew --repo homebrew/core)
# fixed protobuf version 3.17.3
git checkout 2b411d925849478163647594b32fd237828cf720
popd
${GITHUB_WORKSPACE}/scripts/install_deps.sh --dev --verbose

- name: Build Client Wheels
Expand Down
2 changes: 1 addition & 1 deletion coordinator/gscoordinator/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1776,5 +1776,5 @@ def _check_task(endpoint):
return rlt
time.sleep(3)
if time.time() - begin_time > INTERAVTIVE_INSTANCE_TIMEOUT_SECONDS:
executor.shutdown(wait=False, cancel_futures=True)
executor.shutdown(wait=False)
raise TimeoutError(f"Gremlin check query failed: {error_message}")