terra-sync / cnc

Seamless Database Replication tool
GNU General Public License v3.0
4 stars 2 forks source link

Removing `unwrap` from rust module #74

Open panosfol opened 2 months ago

panosfol commented 2 months ago

Calling unwrap will prevent us from utilizing mutexes to introduce thread safety in our rust module, since a thread that panicked will be unable to unlock the mutex.

The unwrap calls should be replaced with actually matching the results.