1
0
forked from MTSR/mapserver

zero length channel

This commit is contained in:
NatureFreshMilk 2019-01-23 15:41:55 +01:00
parent 65f51612df
commit 699a685fa2

View File

@ -38,7 +38,7 @@ func Job(ctx *app.App) {
rstate := ctx.Config.RenderState
lastcoords := coords.NewMapBlockCoords(rstate.LastX, rstate.LastY, rstate.LastZ)
jobs := make(chan *coords.TileCoords, 10)
jobs := make(chan *coords.TileCoords, 0)
go worker(ctx, jobs)