Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ public void cancelConnectionRefresh(Long connectionId, String tenantId) {
schedulerClient.deleteSchedule(request -> request.clientToken(tenantId + connectionId)
.groupName(CONNECTION_REFRESH)
.name(CONNECTION_REFRESH + tenantId + connectionId));

log.info("Canceling connection refresh for connection: {}, tenant: {}", connectionId, tenantId);
} catch (RuntimeException e) {
if (log.isDebugEnabled()) {
log.debug("Dynamic Webhook Trigger Refresh not defined");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,8 @@ public Long executeConnectionRefresh(Long connectionId) {

Map<String, ?> parameters = connection.getParameters();

logger.info("Scheduled refresh of connection parameters for connection with connectionId: {}", connectionId);

return (Long) parameters.get("expires_in");
}

Expand Down
Loading