I am trying to run a script to synchronize changes from a check-out to a sde distributed geodatabase by using arcpy.Synchronize_Changes_management. I constantly get an error stating the reconciliation failed during synchronization. This is despite me explicitly stating in the script that I do not wish to reconcile. See below for the python snippet.
arcpy.SynchronizeChanges_management(Replica_data, replica_name, Parent_gdb, "FROM_GEODATABASE1_TO_2", "IN_FAVOR_OF_GDB1", "BY_OBJECT", "DO_NOT_RECONCILE")
Any help would be appreciated.