- Notifications
You must be signed in to change notification settings - Fork1
Commitda7656f
authored
Impl: update ssh config when settings change (#51)
- right now the ssh config is triggered only when at the login and onlywhen new workspaces arecreated. In the last case, the ssh config updates only the new sections.- but the user can go into settings page and enable or disable thewildcard ssh config. With this patchafter the user hits Save, the ssh re-configuration is triggered, withoutthe need to restart Toolbox.Also a major fix - read only settings acted as snapshots in the sensethat they did not reflect any subsequent update to the underlying storebecause updates create a new readonly instance- with this patch we simplified the code even more by exposing areadonly interface with all of theimplementation in the CoderSettingsStore. PluginSettingsStore andEnvironments are the only persist-able stores.- because read only instances share the same settings store instancesany update on the writable will reflect on the readable instances as well.1 parent09e15db commitda7656f
File tree
9 files changed
+387
-314
lines changed- src/main/kotlin/com/coder/toolbox
- cli
- settings
- store
- util
- views
9 files changed
+387
-314
lines changedLines changed: 4 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
204 | 204 |
| |
205 | 205 |
| |
206 | 206 |
| |
| 207 | + | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
207 | 211 |
|
Lines changed: 29 additions & 14 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
| 23 | + | |
23 | 24 |
| |
24 |
| - | |
| 25 | + | |
25 | 26 |
| |
26 | 27 |
| |
27 | 28 |
| |
28 | 29 |
| |
29 | 30 |
| |
| 31 | + | |
| 32 | + | |
30 | 33 |
| |
31 | 34 |
| |
32 | 35 |
| |
| |||
35 | 38 |
| |
36 | 39 |
| |
37 | 40 |
| |
| 41 | + | |
38 | 42 |
| |
39 | 43 |
| |
40 | 44 |
| |
41 | 45 |
| |
42 | 46 |
| |
43 | 47 |
| |
44 |
| - | |
| 48 | + | |
45 | 49 |
| |
46 |
| - | |
| 50 | + | |
47 | 51 |
| |
48 | 52 |
| |
49 |
| - | |
| 53 | + | |
| 54 | + | |
50 | 55 |
| |
51 | 56 |
| |
52 | 57 |
| |
| |||
92 | 97 |
| |
93 | 98 |
| |
94 | 99 |
| |
95 |
| - | |
| 100 | + | |
96 | 101 |
| |
97 | 102 |
| |
98 | 103 |
| |
| |||
107 | 112 |
| |
108 | 113 |
| |
109 | 114 |
| |
110 |
| - | |
111 |
| - | |
112 |
| - | |
| 115 | + | |
113 | 116 |
| |
114 | 117 |
| |
115 | 118 |
| |
| |||
124 | 127 |
| |
125 | 128 |
| |
126 | 129 |
| |
127 |
| - | |
128 |
| - | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
129 | 134 |
| |
130 | 135 |
| |
131 | 136 |
| |
| |||
136 | 141 |
| |
137 | 142 |
| |
138 | 143 |
| |
139 |
| - | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
140 | 155 |
| |
141 | 156 |
| |
142 | 157 |
| |
| |||
178 | 193 |
| |
179 | 194 |
| |
180 | 195 |
| |
181 |
| - | |
| 196 | + | |
182 | 197 |
| |
183 | 198 |
| |
184 | 199 |
| |
| |||
270 | 285 |
| |
271 | 286 |
| |
272 | 287 |
| |
273 |
| - | |
| 288 | + | |
274 | 289 |
| |
275 | 290 |
| |
276 | 291 |
| |
| |||
342 | 357 |
| |
343 | 358 |
| |
344 | 359 |
| |
345 |
| - | |
| 360 | + | |
346 | 361 |
| |
347 | 362 |
| |
348 | 363 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
9 |
| - | |
| 9 | + | |
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
| |||
125 | 125 |
| |
126 | 126 |
| |
127 | 127 |
| |
128 |
| - | |
| 128 | + | |
129 | 129 |
| |
130 | 130 |
| |
131 | 131 |
| |
| |||
267 | 267 |
| |
268 | 268 |
| |
269 | 269 |
| |
270 |
| - | |
| 270 | + | |
271 | 271 |
| |
272 | 272 |
| |
273 | 273 |
| |
274 | 274 |
| |
275 | 275 |
| |
276 | 276 |
| |
277 |
| - | |
| 277 | + | |
278 | 278 |
| |
279 | 279 |
| |
280 | 280 |
| |
281 | 281 |
| |
282 | 282 |
| |
283 | 283 |
| |
284 |
| - | |
| 284 | + | |
285 | 285 |
| |
286 | 286 |
| |
287 | 287 |
| |
|
0 commit comments
Comments
(0)