It depends on the type of update you want to do. If you only need to
update a single parameter or two then you can use update_attribute
(note: singular). As the name suggests it accepts a single attribute
name and the corresponding value.
If you need to do more than that then you may want to reconsider what
your callbacks are doing. At the very least you could add conditions
to the top of the callback that causes them to shortcircuit.
On Mar 11, 7:43 pm, "Christopher J. Bottaro" <
cjbott...@gmail.com>
wrote: