Fixed file not found error
This commit is contained in:
parent
4efd346ce1
commit
c22cdac1cb
@ -122,14 +122,11 @@ func getSchedule( lang string, routeName string ) ( *BusSchedule, error ) {
|
|||||||
return &newSch, nil
|
return &newSch, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if oldSch.Status == 0 && cs.NotExpired( 60 ) {
|
if oldSch.Status == 0 {
|
||||||
log.Printf( "Using cache: %s", CACHE_PATH )
|
if cs.NotExpired( 60 ) || oldSch.StatusTime.Time == newSch.StatusTime.Time {
|
||||||
return &oldSch, nil
|
log.Printf( "Using cache: %s", CACHE_PATH )
|
||||||
}
|
return &oldSch, nil
|
||||||
|
}
|
||||||
if oldSch.StatusTime.Time == newSch.StatusTime.Time {
|
|
||||||
log.Printf( "Using cache: %s", CACHE_PATH )
|
|
||||||
return &oldSch, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// First time + try again i times
|
// First time + try again i times
|
||||||
|
@ -73,7 +73,7 @@ func CacheStreamEx( path string, readStream func() ( io.ReadCloser, error ) ) (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return &cs, err
|
return &cs, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user