Closed abezzub closed 1 year ago
I came into the same problem too. @hibiken
Until it fixed we can use the pr in go mod
replace github.com/hibiken/asynqmon => github.com/trungdlp-wolffun/asynqmon v0.0.0-20230504041709-b870efa9542d
func Monitor() { h := asynqmon.New(asynqmon.Options{ RootPath: "/", // RootPath specifies the root for asynqmon app RedisConnOpt: asynq.RedisClientOpt{Addr: ":6379", Password: "", DB: 0}, })
e := echo.New()
e.Any("/*", echo.WrapHandler(h))
e.Start(":8080")
}
Visit http://localhost:8080/ why this error occurs
template: pattern did not match any files: ui\build\index.html
How can I solve it?
@anupriya17
+1
+1
Should be fixed via #303
+1 template: pattern matches no files: ui\build\index.html
I am getting following error:
Error originates from here:
https://github.com/hibiken/asynqmon/blob/master/handler.go#L66
When I revert my project to use Asynq 0.24.0 the error goes away. I am using v9 Redis client.