Juan Calderon-Perez
Juan Calderon-Perez
@the-hotmann You can use embed.FS with the new static middleware. ```go //go:embed static.go config.go var fsTestFilesystem embed.FS app := fiber.New() app.Get("/embed*", New("", static.Config{ FS: fsTestFilesystem, Browse: true, })) ```
> Ok, got it to work on Fiber v3 aswell: > > ``` > //go:embed static > embedDirStatic embed.FS > > func main() { > > var ( > newembedDirStatic...
@mpcref Agree, the "Unauthorize error message" is very annoying and hard to avoid. It makes the user experience very bad for new users. I think another problem is how isolated...
@mpcref That sounds like a bug, it should enabling sso/rbac should be backwards compatible. This is good to know, I have over 30 dashboards in my current instance.
Related https://github.com/openobserve/openobserve/issues/6728
Ping @deslum thoughts?
@deslum You can use twine, as long as you still have access to our pypi account. https://www.geeksforgeeks.org/how-to-publish-python-package-at-pypi-using-twine-module/
@AbstractiveNord What is the benefit of this?
@ItsMeSamey Anyway we could trigger this in a new unit-test?
> @gaby I've been wondering why is `Must()` even needed, it only adds overhead so won't we be better off removing it altogether. Setting status should be user's job anyway...