Skip to content

Commit

Permalink
changed default values to do performance testing for issue #216
Browse files Browse the repository at this point in the history
  • Loading branch information
satanatoly committed Jul 24, 2017
1 parent f837247 commit e0537f4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,13 +250,13 @@ public class SmscPropertiesManagement implements SmscPropertiesManagementMBean {
private boolean generateReceiptCdr = false;
// true: we generate detailed CDR for messages
// false: we do not generate detailed CDR
private boolean generateDetailedCdr = false;
private boolean generateDetailedCdr = true;
// true: we generate CDR also for temp failures (along with success and permanent failure cases)
// false: we generate CDR only for success and permanent failure cases (no CDRs for temp failures)
private boolean generateTempFailureCdr = true;
// true: We generate CDR also for SMSC message rejection by mproc rule at forwarding.
// false: CDR entries are not generated on the SMSC message rejection by mproc rule at forwarding.
private boolean generateRejectionCdr = false;
private boolean generateRejectionCdr = true;
// true: when CDR generating SMSC GW will calculate MSG_PARTS and CHAR_NUMBERS fields (that demands extra calculating)
// false: not calculate
private boolean calculateMsgPartsLenCdr = false;
Expand Down

0 comments on commit e0537f4

Please sign in to comment.