Skip to content

Commit

Permalink
Version change to v0.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Krishna <[email protected]>
  • Loading branch information
kvdevel committed Jan 8, 2023
1 parent 64f0e89 commit 035afc7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions gyeeta_comm.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ const JsonMsgTypes = {
const RESP_WEB_JSON = 1000;
const RESP_JSON_WITH_HEADER = 1;

const NODE_VERSION = 0x000100;
const NODE_VERSION_STR = '0.1.0';
const MIN_SHYAMA_VERSION = 0x000100;
const MIN_MADHAVA_VERSION = 0x000100;
const NODE_VERSION = 0x000200;
const NODE_VERSION_STR = '0.2.0';
const MIN_SHYAMA_VERSION = 0x000200;
const MIN_MADHAVA_VERSION = 0x000200;
const COMM_VERSION = 1;
const CLI_TYPE_REQ_RESP = 0;

Expand Down Expand Up @@ -1568,7 +1568,7 @@ class ShyamaHandler

const currmsec = Date.now();

if (currmsec - this.compquerymsec_ > 10 * 60 * 1000) {
if (currmsec - this.compquerymsec_ > 5 * 60 * 1000) {
this.lastchgmsec_ = 0;
this.compquerymsec_ = currmsec;
}
Expand Down

0 comments on commit 035afc7

Please sign in to comment.