| OLD | NEW |
| 1 # Magic Values | 1 # Magic Values |
| 2 | 2 |
| 3 Describes magic values on the swarming server | 3 Describes magic values on the swarming server |
| 4 | 4 |
| 5 ## Introduction | 5 ## Introduction |
| 6 | 6 |
| 7 There are a few "magic" values in the isolate and swarming server. Also some | 7 There are a few "magic" values in the isolate and swarming server. Also some |
| 8 dimensions and state values have special meaning. | 8 dimensions and state values have special meaning. |
| 9 | 9 |
| 10 | 10 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 reap any tasks projected to end after the bot disconnects. | 64 reap any tasks projected to end after the bot disconnects. |
| 65 - `periodic_reboot_secs`: when set to a integer, instructs the server to send | 65 - `periodic_reboot_secs`: when set to a integer, instructs the server to send |
| 66 a reboot command after this period. The actual period is fuzzed with a 10% | 66 a reboot command after this period. The actual period is fuzzed with a 10% |
| 67 delta. | 67 delta. |
| 68 - `quarantined`: has the same meaning as in `dimensions`. It's also | 68 - `quarantined`: has the same meaning as in `dimensions`. It's also |
| 69 supported as a state. | 69 supported as a state. |
| 70 - `bot_group_cfg_version`: version identifier of the server defined | 70 - `bot_group_cfg_version`: version identifier of the server defined |
| 71 configuration (extract from bots.cfg), applied to the bot during initial | 71 configuration (extract from bots.cfg), applied to the bot during initial |
| 72 handshake. The server will ask the bot to restart if this configuration | 72 handshake. The server will ask the bot to restart if this configuration |
| 73 changes. | 73 changes. |
| 74 |
| 75 ### tags |
| 76 |
| 77 - `source_revision`: if present, it specifies the SCM revision related to the |
| 78 task. This allows the UI to link to the relevant revision. |
| 79 - `source_repo`: if present, it is a url to the hosted SCM related to the |
| 80 task, with a %s where the revision should be placed. This allows the UI |
| 81 to link to the relevant revision. |
| OLD | NEW |