Skip to content

Commit 122678e

Browse files
rockwood-openaialex-q-chen
authored andcommitted
Fix some OAuth related issues
* Add logging for config issues * oauth callback expiration should be milliseconds not microseconds * Return on error early during oauth callback * Prevent no config from throwing exception constructing string
1 parent e9a96ff commit 122678e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

include/kafka/ClientCommon.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#pragma once
22

3+
#include <chrono>
34
#include <kafka/Project.h>
45

56
#include <kafka/Error.h>
@@ -32,7 +33,7 @@ namespace KAFKA_API { namespace clients {
3233
using KeyValuePairs = std::map<std::string, std::string>;
3334

3435
std::string value;
35-
std::chrono::microseconds mdLifetime{};
36+
std::chrono::milliseconds mdLifetime{};
3637
std::string mdPrincipalName;
3738
KeyValuePairs extensions;
3839
};

include/kafka/KafkaClient.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ KafkaClient::KafkaClient(ClientType clientType,
372372
}
373373
else
374374
{
375-
KAFKA_API_DO_LOG(Log::Level::Err, "failed to be initialized with property[%s:%s], result[%d]", k.c_str(), v->c_str(), result);
375+
KAFKA_API_DO_LOG(Log::Level::Err, "failed to be initialized with property[%s:%s], result[%d]: %s", k.c_str(), v->c_str(), result, errInfo.c_str());
376376
}
377377
}
378378

@@ -570,11 +570,12 @@ KafkaClient::oauthbearerTokenRefreshCallback(rd_kafka_t* rk, const char* oauthbe
570570

571571
try
572572
{
573-
oauthbearerToken = kafkaClient(rk).onOauthbearerTokenRefresh(oauthbearerConfig);
573+
oauthbearerToken = kafkaClient(rk).onOauthbearerTokenRefresh(oauthbearerConfig != nullptr ? oauthbearerConfig : "");
574574
}
575575
catch (const std::exception& e)
576576
{
577577
rd_kafka_oauthbearer_set_token_failure(rk, e.what());
578+
return;
578579
}
579580

580581
LogBuffer<LOG_BUFFER_SIZE> errInfo;

0 commit comments

Comments
 (0)