Compare commits
8 Commits
auto-backp
...
branch-0.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
123eb04136 | ||
|
|
37dfe9cfc6 | ||
|
|
43d3c5f354 | ||
|
|
59cd785778 | ||
|
|
bb24d4324f | ||
|
|
eb7ae39f40 | ||
|
|
4281b48472 | ||
|
|
fef7375beb |
2
.gitmodules
vendored
2
.gitmodules
vendored
@@ -1,6 +1,6 @@
|
||||
[submodule "seastar"]
|
||||
path = seastar
|
||||
url = ../seastar
|
||||
url = ../scylla-seastar
|
||||
ignore = dirty
|
||||
[submodule "swagger-ui"]
|
||||
path = swagger-ui
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/bin/sh
|
||||
|
||||
VERSION=development
|
||||
VERSION=0.13.2
|
||||
|
||||
if test -f version
|
||||
then
|
||||
|
||||
2
dist/redhat/centos_dep/build_dependency.sh
vendored
2
dist/redhat/centos_dep/build_dependency.sh
vendored
@@ -21,7 +21,7 @@ if [ ! -f isl-0.14-3.fc22.src.rpm ]; then
|
||||
fi
|
||||
|
||||
if [ ! -f gcc-5.1.1-4.fc22.src.rpm ]; then
|
||||
wget http://download.fedoraproject.org/pub/fedora/linux/updates/22/SRPMS/g/gcc-5.1.1-4.fc22.src.rpm
|
||||
wget https://s3.amazonaws.com/scylla-centos-dep/gcc-5.1.1-4.fc22.src.rpm
|
||||
fi
|
||||
|
||||
if [ ! -f boost-1.57.0-6.fc22.src.rpm ]; then
|
||||
|
||||
@@ -666,6 +666,10 @@ void gossiper::convict(inet_address endpoint, double phi) {
|
||||
auto& state = it->second;
|
||||
// FIXME: Add getGossipStatus
|
||||
// logger.debug("Convicting {} with status {} - alive {}", endpoint, getGossipStatus(epState), state.is_alive());
|
||||
if (!state.is_alive()) {
|
||||
return;
|
||||
}
|
||||
|
||||
logger.trace("convict ep={}, phi={}, is_alive={}, is_dead_state={}", endpoint, phi, state.is_alive(), is_dead_state(state));
|
||||
if (is_shutdown(endpoint)) {
|
||||
mark_as_shutdown(endpoint);
|
||||
|
||||
2
seastar
2
seastar
Submodule seastar updated: d40453bf71...8a76d06797
@@ -158,7 +158,9 @@ thread_local T* prepared_buffers_allocator<T>::_prepared_buffer;
|
||||
// Consider using an intrusive container leveraging segment_descriptor objects.
|
||||
using segment_heap = boost::heap::binomial_heap<
|
||||
segment*, boost::heap::compare<segment_occupancy_descending_less_compare>,
|
||||
boost::heap::allocator<prepared_buffers_allocator<segment*>>>;
|
||||
boost::heap::allocator<prepared_buffers_allocator<segment*>>,
|
||||
// constant_time_size<true> causes corruption with boost < 1.60
|
||||
boost::heap::constant_time_size<false>>;
|
||||
using segment_heap_allocator = segment_heap::allocator_type;
|
||||
|
||||
struct segment {
|
||||
|
||||
Reference in New Issue
Block a user