Fix TIPLOC/STANOX fetching code, fix logging for PIS metadata
All checks were successful
Go Test / test (push) Successful in 35s

This commit is contained in:
Fred Boniface 2024-11-22 21:49:32 +00:00
parent 2ef228a192
commit f85a3da50e
2 changed files with 3 additions and 3 deletions

View File

@ -106,7 +106,7 @@ func GetTiplocFromCrs(crs string) (tiploc string, err error) {
},
}
coll := MongoClient.Database(DatabaseName).Collection(StationsCollection)
coll := MongoClient.Database(DatabaseName).Collection(CorpusCollection)
cursor, err := coll.Aggregate(context.Background(), pipeline)
if err != nil {
return "", err
@ -144,7 +144,7 @@ func GetStanoxFromCrs(crs string) (stanox string, err error) {
},
}
coll := MongoClient.Database(DatabaseName).Collection(StationsCollection)
coll := MongoClient.Database(DatabaseName).Collection(CorpusCollection)
cursor, err := coll.Aggregate(context.Background(), pipeline)
if err != nil {
return "", err

View File

@ -47,7 +47,7 @@ func PutPisMetadata(version string) error {
return err
}
log.Info("New Stations Metadata written", zap.String("version", version))
log.Info("New PIS Metadata written", zap.String("version", version))
return nil
}