Skip to content

Commit

Permalink
Remove spurious debug print
Browse files Browse the repository at this point in the history
Re ECFLOW-1931
  • Loading branch information
marcosbento committed Jun 17, 2024
1 parent 49ac03b commit b367447
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion libs/service/src/ecflow/service/aviso/AvisoService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ void AvisoService::operator()(const std::chrono::system_clock::time_point& now)
std::vector<std::pair<std::string, std::string>> updated_keys;
try {
// For the associated host(+port)
std::cout << "entry.listener().address(): " << entry.listener().address() << std::endl;
aviso::etcd::Client client{entry.listener().address(), entry.auth_token};
updated_keys = client.poll(entry.listener().prefix(), entry.listener().revision() + 1);
}
Expand Down
1 change: 0 additions & 1 deletion libs/service/src/ecflow/service/aviso/etcd/Client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ Client::Client(const std::string& address, const std::string& auth_token)
Client::~Client() = default;

std::vector<std::pair<std::string, std::string>> Client::poll(std::string_view key_prefix, int64_t revision) {
std::cout << "Client::poll" << key_prefix << ", revision " << revision << std::endl;
using json = nlohmann::ordered_json;

httplib::Headers headers;
Expand Down

0 comments on commit b367447

Please sign in to comment.