increase max msgs per send 1000->2000
This commit is contained in:
parent
6b0303de89
commit
4447b03619
2 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ public:
|
|||
const std::string& username = "guest",
|
||||
const std::string& password = "guest",
|
||||
bool useTopic = false, bool sessionTransacted = false,
|
||||
int maxMessagesPerSend = 1000)
|
||||
int maxMessagesPerSend = 2000)
|
||||
{
|
||||
this->useTopic = useTopic;
|
||||
this->sessionTransacted = sessionTransacted;
|
||||
|
@ -363,7 +363,7 @@ int main(int argc, char* argv[]) {
|
|||
// createQueue to be used in both consumer an producer.
|
||||
//============================================================
|
||||
bool useTopics = false;
|
||||
int maxMessagesPerSend = 1000;
|
||||
int maxMessagesPerSend = 2000;
|
||||
bool sessionTransacted = false;
|
||||
|
||||
int shmid;
|
||||
|
|
Binary file not shown.
Loading…
Add table
Reference in a new issue