Operational DB subscription notification without changing operational data

Is there a way to generate subscription notification for all writes to operational-db with subscription lock irrespective of whether the value is modified or not?
Something that can help force-trigger the notification whenever a write is attempted with subscription-lock ?
Currently it is observed that ConfD suppresses redundant notifications when the value remains the same.

Hi Anu,

A notification is generated on duplicate writes, but there is nothing in the diff-iterate, as expected. e.g. I modified the cdb_listener.c from examples.confd/misc/maapi_command/ to use cdb_oper_subscribe() and then print the number of modified values e.g.

           if (reslen > 0) {
                printf("*** Config updated \n");

                confd_tag_value_t *values;
                int nvalues;
                if (cdb_get_modifications(subsock, sub_points[0], 0, &values, &nvalues,
                          path) == CONFD_OK) {
                  printf("*** nvalues is %d \n", nvalues);
                  for (int i=0; i<nvalues; i++)  {
                    confd_free_value(CONFD_GET_TAG_VALUE(&values[i]));
                  }

                }
                cdb_diff_iterate(subsock, sub_points[0], iter,
                                 ITER_WANT_PREV, NULL);
            }

./cdb_monitor
CDB Subscription point = 7
*** Config updated                             <---- first time
*** nvalues is 1 
Value Set: /op-data --> (op-datay)            
*** Config updated                             <---- duplicate with no values, but we still get notified
*** nvalues is 0 

You may really want to see what is being attempted to be written, or possibly just by whom, given that the data is the same. Other notifications like the authentication notification might help you there.