Skip to content

Commit

Permalink
SSVG-3706 hse-python.wrap: bump version to 2.0.2 (#92)
Browse files Browse the repository at this point in the history
* hse-python.wrap: bump version to 2.0.2

Signed-off-by: hse-devops <[email protected]>

* Replace pthread_yield with sched_yield

Signed-off-by: hse-devops <[email protected]>
  • Loading branch information
hse-devops authored Nov 10, 2021
1 parent c1fc64e commit 96acd05
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/validate_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
echo "$HOME/.local/bin" >> $GITHUB_PATH
sudo dnf install -y which git pkg-config java-1.8.0-openjdk-devel libmicrohttpd-devel userspace-rcu-devel libyaml-devel lz4-devel libbsd-devel libcurl-devel
sudo dnf install -y xz mongo-c-driver libbson openssl-devel cyrus-sasl-devel ncurses-devel cmake make automake gcc gcc-c++ kernel-devel
sudo dnf install -y python-pip python-wheel python3-devel
sudo dnf install -y python-pip python-wheel python3-devel libxml2-devel libxslt-devel
python3 -m pip install --user setuptools_rust wheel
python3 -m pip install --user poetry
Expand Down
2 changes: 1 addition & 1 deletion lib/kvdb/ikvdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -2001,7 +2001,7 @@ ikvdb_throttle(struct ikvdb_impl *self, u64 bytes, u64 tstart)
if (sleep_ns - dly > timer_slack / 2) {
tbkt_delay(sleep_ns - dly);
} else {
pthread_yield();
sched_yield();
}
}

Expand Down
2 changes: 1 addition & 1 deletion lib/kvdb/viewset.c
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ viewset_remove(
break;
}

pthread_yield();
sched_yield();
}

atomic_dec(&bkt->vsb_active);
Expand Down
2 changes: 1 addition & 1 deletion subprojects/hse-python.wrap
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[wrap-git]
url = https://github.com/hse-project/hse-python.git
revision = r2.0.0
revision = r2.0.2

0 comments on commit 96acd05

Please sign in to comment.