Skip to content

Commit

Permalink
Merge pull request #12343 from Kirishikesan/master
Browse files Browse the repository at this point in the history
Changes applicationid variable to be obtained from local parameter
  • Loading branch information
Kirishikesan authored Mar 22, 2024
2 parents 55c9d7b + e7e8b35 commit 7c02d37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,7 @@ public Set<Subscription> getTopicSubscriptionsByApiUUID(String applicationId, St
}
subscription.setLastDeliveryState(resultSet.getInt("DELIVERY_STATE"));
subscription.setTopic(resultSet.getString("HUB_TOPIC"));
subscription.setAppID(resultSet.getString("APPLICATION_ID"));
subscription.setAppID(applicationId);
subscriptionSet.add(subscription);
}
return subscriptionSet;
Expand Down

0 comments on commit 7c02d37

Please sign in to comment.