forgot to change default storage and clean up period

- 1 month default message storage period
- cleanup period every 5 minutes
- suggest devs lower this to 5 minute store period and 1 minute cleanup period to test out.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6275 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
chrisparker126 2013-03-23 14:13:15 +00:00
parent d6328c8123
commit 84fe53b611
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@
#define GEN_EXCH_DEBUG 1 #define GEN_EXCH_DEBUG 1
#define MSG_CLEANUP_PERIOD 60*3 // 3 minute #define MSG_CLEANUP_PERIOD 60*5 // 5 minutes
RsGenExchange::RsGenExchange(RsGeneralDataService *gds, RsNetworkExchangeService *ns, RsGenExchange::RsGenExchange(RsGeneralDataService *gds, RsNetworkExchangeService *ns,
RsSerialType *serviceSerialiser, uint16_t servType, RsGixs* gixs, RsSerialType *serviceSerialiser, uint16_t servType, RsGixs* gixs,

View File

@ -39,7 +39,7 @@
#include "serialiser/rsnxsitems.h" #include "serialiser/rsnxsitems.h"
#include "rsgxsutil.h" #include "rsgxsutil.h"
#define DEFAULT_MSG_STORE_PERIOD 60*60*24 // 1 day #define DEFAULT_MSG_STORE_PERIOD 60*60*24*30 // 1 month
template<class GxsItem, typename Identity = std::string> template<class GxsItem, typename Identity = std::string>
class GxsPendingItem class GxsPendingItem