Skip to content

Commit

Permalink
k/client: rename retry_with_mitigation to utils
Browse files Browse the repository at this point in the history
  • Loading branch information
NyaliaLui committed Apr 24, 2023
1 parent 7146512 commit 217d25f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/v/kafka/client/client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
#include "kafka/client/exceptions.h"
#include "kafka/client/logger.h"
#include "kafka/client/partitioners.h"
#include "kafka/client/retry_with_mitigation.h"
#include "kafka/client/sasl_client.h"
#include "kafka/client/utils.h"
#include "kafka/protocol/errors.h"
#include "kafka/protocol/fetch.h"
#include "kafka/protocol/find_coordinator.h"
Expand Down
2 changes: 1 addition & 1 deletion src/v/kafka/client/client.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
#include "kafka/client/consumer.h"
#include "kafka/client/fetcher.h"
#include "kafka/client/producer.h"
#include "kafka/client/retry_with_mitigation.h"
#include "kafka/client/topic_cache.h"
#include "kafka/client/transport.h"
#include "kafka/client/types.h"
#include "kafka/client/utils.h"
#include "kafka/protocol/create_topics.h"
#include "kafka/protocol/fetch.h"
#include "kafka/protocol/list_offsets.h"
Expand Down
2 changes: 1 addition & 1 deletion src/v/kafka/client/producer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "kafka/client/configuration.h"
#include "kafka/client/exceptions.h"
#include "kafka/client/logger.h"
#include "kafka/client/retry_with_mitigation.h"
#include "kafka/client/utils.h"
#include "kafka/protocol/errors.h"
#include "kafka/protocol/produce.h"
#include "model/fundamental.h"
Expand Down
2 changes: 1 addition & 1 deletion src/v/kafka/client/test/retry_with_mitigation.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0

#include "kafka/client/retry_with_mitigation.h"
#include "kafka/client/utils.h"

#include <seastar/core/future.hh>
#include <seastar/testing/thread_test_case.hh>
Expand Down
File renamed without changes.

0 comments on commit 217d25f

Please sign in to comment.