Re-enable workers

This commit is contained in:
Daniel Mason 2021-08-12 21:23:48 +12:00
parent f914575e09
commit d7b7ceb122
Signed by: idanoo
GPG Key ID: 387387CDBC02F132
2 changed files with 8 additions and 7 deletions

View File

@ -75,8 +75,8 @@ func main() {
defer goscrobble.CloseRedisConn() defer goscrobble.CloseRedisConn()
// Start background workers // Start background workers
// go goscrobble.StartBackgroundWorkers() go goscrobble.StartBackgroundWorkers()
// defer goscrobble.EndBackgroundWorkers() defer goscrobble.EndBackgroundWorkers()
// Boot up API webserver \o/ // Boot up API webserver \o/
goscrobble.HandleRequests(port) goscrobble.HandleRequests(port)

View File

@ -74,17 +74,18 @@ const Track = (route) => {
return ( return (
<div className="pageWrapper"> <div className="pageWrapper">
<h1 style={{margin: 0}}>
{track.name}
</h1>
<div className="pageBody"> <div className="pageBody">
<div style={{display: `flex`, flexWrap: `wrap`, textAlign: `center`}}> <div style={{display: `flex`, flexWrap: `wrap`, textAlign: `center`}}>
<div style={{width: `300px`, padding: `0 10px 10px 10px`, textAlign: `left`}}> <div style={{width: `300px`, padding: `0 10px 10px 10px`, textAlign: `left`}}>
<h1 style={{margin: 0}}>
{track.name} <span style={{fontSize: '14pt'}}>
</h1>
<span>
{artists} {artists}
</span> </span>
<br/> <br/>
<span> <span style={{fontSize: '12pt'}}>
{albums} {albums}
</span> </span>
<img src={process.env.REACT_APP_API_URL + "/img/" + track.img + "_full.jpg"} alt={track.name} style={{maxWidth: `300px`, maxHeight: `300px`}}/><br/><br/> <img src={process.env.REACT_APP_API_URL + "/img/" + track.img + "_full.jpg"} alt={track.name} style={{maxWidth: `300px`, maxHeight: `300px`}}/><br/><br/>