File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ bundle exec ruby lib/time_machine/main.rb --project=/${PROJECT} --export-osm
15
15
osmium cat \
16
16
--output-header=" osmosis_replication_timestamp=${timestamp} " \
17
17
--output-header=" osmosis_replication_sequence_number=${sequenceNumber:- 0} " \
18
- --output-header=" osmosis_replication_base_url=${PUBLIC_URL} /api/0.1/${PROJECT_NAME} /extract /update" \
18
+ --output-header=" osmosis_replication_base_url=${PUBLIC_URL} /api/0.1/${PROJECT_NAME} /export /update/ " \
19
19
${PROJECT} /export/${PROJECT_NAME} .osm.bz2 \
20
20
--overwrite \
21
21
-o ${PROJECT} /export/${PROJECT_NAME} -tmp.osm.pbf &&
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ class StateFile < T::InexactStruct
10
10
const :sequence_number , Integer
11
11
const :timestamp , String
12
12
13
- sig {
13
+ sig {
14
14
params (
15
15
path : String
16
16
) . returns ( T . nilable ( StateFile ) )
@@ -36,13 +36,13 @@ def self.from_file(path)
36
36
)
37
37
end
38
38
39
- sig {
39
+ sig {
40
40
params (
41
41
path : String
42
42
) . void
43
43
}
44
44
def save_to ( path )
45
- File . write ( path , "timestamp=#{ timestamp }
45
+ File . write ( path , "timestamp=#{ timestamp . gsub ( ':' , '\\:' ) } \n
46
46
sequenceNumber=#{ sequence_number }
47
47
" )
48
48
end
You can’t perform that action at this time.
0 commit comments