You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| offlinePollIntervalMs | FLAGD_OFFLINE_POLL_MS | poll interval for reading offlineFlagSourcePath | int | 5000 | in-process |
24
+
| contextEnricher | - | sync-metadata to evaluation context mapping function | function | identity function | in-process |
25
+
| fatalStatusCodes | FLAGD_FATAL_STATUS_CODES | a list of gRPC status codes, which will cause streams to give up and put the provider in a PROVIDER_FATAL state | array | [] | rpc & in-process |
26
+
"""
26
27
27
28
Scenario Outline: Default Config
28
29
When a config was initialized
@@ -36,10 +37,11 @@ Feature: Configuration Test
36
37
37
38
@rpc@in-process
38
39
Scenarios: Basic Connection
39
-
| option | type | default |
40
-
| host | String | localhost |
41
-
| port | Integer | 8013 |
42
-
| tls | Boolean | false |
40
+
| option | type | default |
41
+
| host | String | localhost |
42
+
| port | Integer | 8013 |
43
+
| tls | Boolean | false |
44
+
| fatalStatusCodes | StringList | |
43
45
44
46
@rpc@in-process@targetURI
45
47
Scenarios: Target URI
@@ -136,10 +138,11 @@ Feature: Configuration Test
136
138
137
139
@rpc@in-process
138
140
Scenarios: Basic Connection
139
-
| option | type | value |
140
-
| host | String | local |
141
-
| tls | Boolean | True |
142
-
| port | Integer | 1234 |
141
+
| option | type | value |
142
+
| host | String | local |
143
+
| tls | Boolean | True |
144
+
| port | Integer | 1234 |
145
+
| fatalStatusCodes | StringList | A, B |
143
146
144
147
@rpc@in-process@targetURI
145
148
Scenarios: Target URI
@@ -203,10 +206,11 @@ Feature: Configuration Test
203
206
204
207
@rpc@in-process
205
208
Scenarios: Basic Connection
206
-
| option | env | type | value |
207
-
| host | FLAGD_HOST | String | local |
208
-
| tls | FLAGD_TLS | Boolean | True |
209
-
| port | FLAGD_PORT | Integer | 1234 |
209
+
| option | env | type | value |
210
+
| host | FLAGD_HOST | String | local |
211
+
| tls | FLAGD_TLS | Boolean | True |
212
+
| port | FLAGD_PORT | Integer | 1234 |
213
+
| fatalStatusCodes | FLAGD_FATAL_STATUS_CODES | StringList | C, D |
210
214
211
215
@rpc@in-process@targetURI
212
216
Scenarios: Target URI
@@ -279,10 +283,11 @@ Feature: Configuration Test
279
283
280
284
@rpc@in-process
281
285
Scenarios: Basic Connection
282
-
| option | env | type | value | env-value |
283
-
| host | FLAGD_HOST | String | local | l |
284
-
| tls | FLAGD_TLS | Boolean | True | False |
285
-
| port | FLAGD_PORT | Integer | 1234 | 3456 |
286
+
| option | env | type | value | env-value |
287
+
| host | FLAGD_HOST | String | local | l |
288
+
| tls | FLAGD_TLS | Boolean | True | False |
289
+
| port | FLAGD_PORT | Integer | 1234 | 3456 |
290
+
| fatalStatusCodes | FLAGD_FATAL_STATUS_CODES | StringList | A, B | C, D |
0 commit comments