comparison pkg/imports/fa.go @ 5560:f2204f91d286

Join the log lines of imports to the log exports to recover data from them. Used in SR export to extract information that where in the meta json but now are only found in the log.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Wed, 09 Feb 2022 18:34:40 +0100
parents 4bc14bea3fc9
children 2dd155cc95ec
comparison
equal deleted inserted replaced
5559:ce9a9a1bf92f 5560:f2204f91d286
158 ST_MakePoint($6, $7)::geography 158 ST_MakePoint($6, $7)::geography
159 )ON CONFLICT ON CONSTRAINT fa_reference_values_pkey DO NOTHING` 159 )ON CONFLICT ON CONSTRAINT fa_reference_values_pkey DO NOTHING`
160 ) 160 )
161 161
162 // Description gives a short info about relevant facts of this import. 162 // Description gives a short info about relevant facts of this import.
163 func (fa *FairwayAvailability) Description() (string, error) { 163 func (fa *FairwayAvailability) Description([]string) (string, error) {
164 return fa.URL, nil 164 return fa.URL, nil
165 } 165 }
166 166
167 type faJobCreator struct{} 167 type faJobCreator struct{}
168 168