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

Use spectatord #77

Merged
merged 8 commits into from
Sep 29, 2020
Merged

Use spectatord #77

merged 8 commits into from
Sep 29, 2020

Commits on Sep 28, 2020

  1. Use spectatord

    Switches from implementing a stateful registry to a registry that sends
    all acitivity to a spectatord sidecar. The build only supports bazel
    now, and we add a dependency on abseil and asio (removing the
    curl/cares/rapidjson/boringssl, etc. dependencies)
    dmuino committed Sep 28, 2020
    Configuration menu
    Copy the full SHA
    45ed1c0 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2020

  1. Test: Print a stacktrace on exceptions/crashes

    Currently the travis build is failing but not giving a lot of detail
    about what is causing an exception.
    dmuino committed Sep 29, 2020
    Configuration menu
    Copy the full SHA
    5f2afd3 View commit details
    Browse the repository at this point in the history
  2. Get better stacktraces

    The latest build shows the exception happening because we didn't join a
    thread which points to something throwing in one of the test servers
    (udp/local)
    dmuino committed Sep 29, 2020
    Configuration menu
    Copy the full SHA
    1a668ad View commit details
    Browse the repository at this point in the history
  3. Add some logging to test servers

    Diagnosing the joinable thread throwing an exception during the
    destructor of the test server
    dmuino committed Sep 29, 2020
    Configuration menu
    Copy the full SHA
    3cf8644 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0a5e1f9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4384035 View commit details
    Browse the repository at this point in the history
  6. Add g++-10 to get newer stdlib

    dmuino committed Sep 29, 2020
    Configuration menu
    Copy the full SHA
    19ad1d2 View commit details
    Browse the repository at this point in the history
  7. Fix deleting TestPublisher as a Publisher

    We were missing a virtual destructor for Publisher causing the
    TestPublisher instance in our tests to not be destructed properly (the
    dtor for Publisher was invoked through the pointer, and not
    TestPublisher)
    dmuino committed Sep 29, 2020
    Configuration menu
    Copy the full SHA
    5b545ee View commit details
    Browse the repository at this point in the history