Update seastar submodule

Contains patch from Rafael to fix up includes.

* seastar c872c3408c...7f7cf0f232 (9):
  > future: Consider result_unavailable invalid in future_state_base::ignore()
  > future: Consider result_unavailable invalid in future_state_base::valid()
  > Merge "future-util: split header" from Benny
  > docs: corrected some text and code-examples in streaming-rpc docs
  > future: Reduce nesting in future::then
  > demos: coroutines: include std-compat.hh
  > sstring: mark str() and methods using it as noexcept
  > tls: Add an assert
  > future: fix coroutine compilation
This commit is contained in:
Avi Kivity
2020-08-18 15:20:06 +03:00
parent 56724d084d
commit f6b66456fd
5 changed files with 5 additions and 1 deletions

View File

@@ -38,6 +38,7 @@
#include <seastar/core/rwlock.hh>
#include <seastar/core/metrics.hh>
#include <seastar/core/execution_stage.hh>
#include <seastar/util/bool_class.hh>
#include <seastar/util/defer.hh>
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/split.hpp>

View File

@@ -26,6 +26,7 @@
#include <seastar/core/shared_ptr.hh>
#include <seastar/core/file.hh>
#include <seastar/core/enum.hh>
#include <seastar/util/bool_class.hh>
#include "seastarx.hh"

Submodule seastar updated: c872c3408c...7f7cf0f232

View File

@@ -20,6 +20,7 @@
*/
#include "integrity_checked_file_impl.hh"
#include <seastar/core/do_with.hh>
#include <seastar/core/print.hh>
#include <boost/algorithm/cxx11/all_of.hpp>

View File

@@ -25,6 +25,7 @@
#include <seastar/core/semaphore.hh>
#include <seastar/core/future.hh>
#include <seastar/core/shared_future.hh>
#include <seastar/util/later.hh>
// An async action wrapper which ensures that at most one action
// is running at any time.