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
| type = "stop-time-updater" |`enum`| The type of the updater. |*Required*|| 1.5 |
95
-
|[backwardsDelayPropagationType](#u__5__backwardsDelayPropagationType)|`enum`| How backwards propagation should be handled. |*Optional*|`"required-no-data"`| 2.2 |
96
-
| feedId |`string`| Which feed the updates apply to. |*Optional*|| 1.5 |
97
-
| frequencySec |`integer`| How often the data should be downloaded in seconds. |*Optional*|`60`| 1.5 |
98
-
| fuzzyTripMatching |`boolean`| If the trips should be matched fuzzily. |*Optional*|`false`| 1.5 |
99
-
| url |`string`| The URL of the GTFS-RT resource. |*Required*|| 1.5 |
100
-
|[headers](#u__5__headers)|`map of string`|Extra headers to add to the HTTP request fetching the data. |*Optional*|| 2.3 |
92
+
| Config Parameter | Type | Summary | Req./Opt. | Default Value | Since |
| type = "stop-time-updater" |`enum`| The type of the updater. |*Required*|| 1.5 |
95
+
|[backwardsDelayPropagationType](#u__5__backwardsDelayPropagationType)|`enum`| How backwards propagation should be handled. |*Optional*|`"required-no-data"`| 2.2 |
96
+
| feedId |`string`| Which feed the updates apply to. |*Optional*|| 1.5 |
97
+
| frequencySec |`integer`| How often the data should be downloaded in seconds. |*Optional*|`60`| 1.5 |
98
+
| fuzzyTripMatching |`boolean`| If the trips should be matched fuzzily. |*Optional*|`false`| 1.5 |
99
+
|[url](#u__5__url)|`string`| The URL of the GTFS-RT resource.|*Required*|| 1.5 |
100
+
|[headers](#u__5__headers)|`map of string`|HTTP headers to add to the request. Any header key, value can be inserted. |*Optional*|| 2.3 |
101
101
102
102
103
103
##### Parameter details
@@ -124,12 +124,21 @@ How backwards propagation should be handled.
Copy file name to clipboardExpand all lines: src/main/java/org/opentripplanner/standalone/config/routerconfig/updaters/GtfsRealtimeAlertsUpdaterConfig.java
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -28,11 +28,7 @@ public static GtfsRealtimeAlertsUpdaterParameters create(String configRef, NodeA
28
28
.summary("Whether to match trips fuzzily.")
29
29
.asBoolean(false),
30
30
c.of("frequencySec").since(V1_5).summary("How often the URL should be fetched.").asInt(60),
31
-
c
32
-
.of("headers")
33
-
.since(V2_3)
34
-
.summary("Extra headers to add to the HTTP request fetching the data.")
Copy file name to clipboardExpand all lines: src/main/java/org/opentripplanner/standalone/config/routerconfig/updaters/VehiclePositionsUpdaterConfig.java
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -24,11 +24,7 @@ public static VehiclePositionsUpdaterParameters create(String updaterRef, NodeAd
24
24
.since(V2_2)
25
25
.summary("The URL of GTFS-RT protobuf HTTP resource to download the positions from.")
26
26
.asUri();
27
-
varheaders = c
28
-
.of("headers")
29
-
.since(V2_3)
30
-
.summary("Extra headers to add to the HTTP request fetching the data.")
0 commit comments