This repository was archived by the owner on Nov 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathconfig.json
More file actions
116 lines (116 loc) · 3.62 KB
/
config.json
File metadata and controls
116 lines (116 loc) · 3.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"es": {
"host": "http://localhost",
"port": 9200
},
"tuid": {
"database": {
"name": "resources/tuid_app.db",
"upgrade": false,
},
"local_hg_source": "C:/mozilla-source/mozilla-central/",
"hg_for_building": "C:/mozilla-build/python/Scripts/hg.exe",
"hg": {
"url": "https://hg.mozilla.org",
"branch": "mozilla-central"
},
"hg_cache": {
"use_cache": true,
"hg": {
"url": "https://hg.mozilla.org"
},
"branches": {
"$ref": "#es",
"index": "repo-branches",
"type": "branch",
"typed": false,
"timeout": 300,
"consistency": "one", // WE ONLY NEED ONE SHARD TO BE AVAILABLE
"debug": false,
"limit_replicas": false
},
"repo": {
"$ref": "#es",
"index": "repo",
"type": "revision",
"typed": false,
"timeout": 300,
"consistency": "one", // WE ONLY NEED ONE SHARD TO BE AVAILABLE
"debug": false,
"limit_replicas": false
},
"moves": {
"$ref": "#es",
"index": "repo-moves",
"type": "revision",
"typed": false,
"timeout": 300,
"consistency": "one", // WE ONLY NEED ONE SHARD TO BE AVAILABLE
"debug": false,
"limit_replicas": false
}
},
"clogger": {
"csetLog": {
"$ref": "#es",
"index": "tuid-csetlog",
"type": "csetlogtype",
"typed": false,
"timeout": 300,
"consistency": "one",
"debug": false,
"limit_replicas": false
}
}
},
"flask": {
"host": "0.0.0.0",
"port": 5000,
"debug": false,
"threaded": true,
"processes": 1
// "ssl_context": "adhoc"
},
"client": {
"endpoint": "http://localhost:5000/tuid",
"timeout": 60,
"push_queue": {
"name": "active-data-tuid-dev",
"debug": true,
"$ref": "file://~/private.json#tuid_queue"
}
},
"pull_queue": {
"name": "active-data-tuid-dev",
"debug": true,
"$ref": "file://~/private.json#tuid_queue"
},
"constants": {
"tuid.service.DEBUG": false,
"tuid.service.ENABLE_TRY": true,
"tuid.service.ANNOTATE_DEBUG": false,
"tuid.clogger.MINIMUM_PERMANENT_CSETS": 10,
"tuid.clogger.CSET_BACKFILL_WAIT_TIME": 5,
"tuid.clogger.CSET_MAINTENANCE_WAIT_TIME": 15,
"tuid.clogger.MAXIMUM_NONPERMANENT_CSETS": 100,
"tuid.clogger.SIGNAL_MAINTENANCE_CSETS": 120,
"tuid.clogger.CSET_DELETION_WAIT_TIME": 5,
"tuid.clogger.CSET_TIP_WAIT_TIME": 40,
"pyLibrary.env.http.DEBUG": false,
"pyLibrary.env.http.default_headers": {
"Referer": "https://github.com/mozilla/TUID",
"User-Agent": "TUID Service"
},
"jx_sqlite.sqlite.DEBUG": false,
"mo_hg.hg_mozilla_org.DAEMON_HG_INTERVAL": 0,
"mo_hg.hg_mozilla_org.WAIT_AFTER_CACHE_MISS":0,
"mo_hg.hg_branches.BRANCH_WHITELIST": ["mozilla-central", "try"]
},
"debug": {
"trace": true,
"cprofile": {
"enabled": false,
"filename": "results/profile.tab"
}
}
}