2 of my observer are observing same sales_order_shipment_save_before
event. ModuleA
was the one i created first and then i created ModuleB
I think you are missing something. You can call as many functions as you can using observers for an event. But for each event, the observer's method name should be different, as well as its id.
singleton
shipmentsave/observer
salesOrderShipmentSaveBefore
singleton
bshipment/observer
salesOrderShipmentSaveBefore
You can see in the XML that the id shipmentsave
and method salesOrderShipmentSaveBefore
is the same.
Just change this and you are all done.