Skip to content

Commit d2b8500

Browse files
committed
Fix export extract
1 parent 461c7bf commit d2b8500

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bin/dump.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ bundle exec ruby lib/time_machine/main.rb --project=/${PROJECT} --export-osm
1515
osmium cat \
1616
--output-header="osmosis_replication_timestamp=${timestamp}" \
1717
--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/" \
1919
${PROJECT}/export/${PROJECT_NAME}.osm.bz2 \
2020
--overwrite \
2121
-o ${PROJECT}/export/${PROJECT_NAME}-tmp.osm.pbf &&

lib/time_machine/osm/state_file.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class StateFile < T::InexactStruct
1010
const :sequence_number, Integer
1111
const :timestamp, String
1212

13-
sig{
13+
sig {
1414
params(
1515
path: String
1616
).returns(T.nilable(StateFile))
@@ -36,13 +36,13 @@ def self.from_file(path)
3636
)
3737
end
3838

39-
sig{
39+
sig {
4040
params(
4141
path: String
4242
).void
4343
}
4444
def save_to(path)
45-
File.write(path, "timestamp=#{timestamp}
45+
File.write(path, "timestamp=#{timestamp.gsub(':', '\\:')}\n
4646
sequenceNumber=#{sequence_number}
4747
")
4848
end

0 commit comments

Comments
 (0)