@@ -121,8 +121,10 @@ public boolean modifySubscription(Subscription subscription, String subscription
121
121
if (result != null ) {
122
122
String subscriptionIdQuery = String .format (SUBSCRIPTION_ID , subscriptionName );
123
123
if (!cleanSubscriptionRepeatFlagHandlerDb (subscriptionIdQuery )) {
124
- LOG .error ("Failed to clean subscription \" " + subscriptionName
125
- + "\" matched AggregatedObjIds from RepeatFlagHandler database" );
124
+ LOG .info ("Subscription \" " + subscriptionName
125
+ + "\" matched aggregated objects id from repeat flag handler database could not be cleaned during the update of the subscription,\n "
126
+ + "probably due to subscription has never matched any aggregated objects and "
127
+ + "no matched aggregated objects id has been stored in database for the specific subscription." );
126
128
}
127
129
}
128
130
@@ -142,8 +144,10 @@ public boolean deleteSubscription(String subscriptionName) throws AccessExceptio
142
144
if (deleteResult ) {
143
145
String subscriptionIdQuery = String .format (SUBSCRIPTION_ID , subscriptionName );
144
146
if (!cleanSubscriptionRepeatFlagHandlerDb (subscriptionIdQuery )) {
145
- LOG .error ("Failed to clean subscription \" " + subscriptionName
146
- + "\" matched AggregatedObjIds from RepeatFlagHandler database" );
147
+ LOG .info ("Subscription \" " + subscriptionName
148
+ + "\" matched aggregated objects id from repeat flag handler database could not be cleaned during the removal of subscription,\n "
149
+ + "probably due to subscription has never matched any aggregated objects and "
150
+ + "no matched aggregated objects id has been stored in database for the specific subscription." );
147
151
}
148
152
} else if (doSubscriptionExist (subscriptionName )) {
149
153
String message = "Failed to delete subscription \" " + subscriptionName
0 commit comments