Skip to content

Commit

Permalink
MDL-48419 mod_scorm: Check net script too agressive
Browse files Browse the repository at this point in the history
in some cases high latency and network issues result in longer
than 2 sec responses from a server, increase this to avoid
excessive warnings.
  • Loading branch information
danmarsden committed Mar 18, 2015
1 parent 06122e4 commit 552281e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,10 +146,10 @@ Y.extend(CheckNet, Y.Base, {
*
* @attribute timeout
* @type Number
* @value 2000
* @value 4000
*/
timeout: {
value: 2000
value: 4000
},

/**
Expand All @@ -159,10 +159,10 @@ Y.extend(CheckNet, Y.Base, {
* @attribute frequency
* @writeOnce
* @type Number
* @value 5000
* @value 10000
*/
frequency: {
value: 5000
value: 10000
},

/**
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions lib/yui/build/moodle-core-checknet/moodle-core-checknet.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,10 @@ Y.extend(CheckNet, Y.Base, {
*
* @attribute timeout
* @type Number
* @value 2000
* @value 4000
*/
timeout: {
value: 2000
value: 4000
},

/**
Expand All @@ -156,10 +156,10 @@ Y.extend(CheckNet, Y.Base, {
* @attribute frequency
* @writeOnce
* @type Number
* @value 5000
* @value 10000
*/
frequency: {
value: 5000
value: 10000
},

/**
Expand Down
8 changes: 4 additions & 4 deletions lib/yui/src/checknet/js/checknet.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,10 @@ Y.extend(CheckNet, Y.Base, {
*
* @attribute timeout
* @type Number
* @value 2000
* @value 4000
*/
timeout: {
value: 2000
value: 4000
},

/**
Expand All @@ -157,10 +157,10 @@ Y.extend(CheckNet, Y.Base, {
* @attribute frequency
* @writeOnce
* @type Number
* @value 5000
* @value 10000
*/
frequency: {
value: 5000
value: 10000
},

/**
Expand Down

0 comments on commit 552281e

Please sign in to comment.