Samu Tamminen

Results 14 comments of Samu Tamminen

Thanks for the issue @being-eyram ! Looks like repeating Client.startContext() is not limited in Android client. One option would be to deactivate the SpeechlyButton for 1 second once the button...

The model seems to expect image of different size, which causes the problem. This https://github.com/ayooshkathuria/YOLO_v3_tutorial_from_scratch/issues/40#issuecomment-516392022 fixed it for me

Proxy has access to the name of the pipeline and it's own name: ```go pipelineName := b.filterSpec.Pipeline() proxyName := b.filterSpec.Name() ``` In order to pass the names to each pool,...

Sounds like a nice improvement! I also often struggle with `delete`/`create`. `apply` command that updates only changed resources is much better UX

Very clever and simple way to add `delete --all` and `apply` 💯 @jthann I think that it would be nice to implement it in `egctl` tool too. However I would...

@brzyangg Thank you for the question. Here's briefly the instructions for backup and recovery: ### Easegress yaml configurations When developing with Easegress, the best practice is to store all yaml...

@brzyangg Have you had chance to try these instructions in your environment?

@brzyangg I noticed there was line `2022-01-18T15:43:40.553+08:00 ERROR cluster/cluster.go:197 start cluster failed (1 retries): start server failed: wal: crc mismatch` in the logs of the _pod-0_ and similar one for...

@brzyangg The data corruption might happen if Easegress was writing to the data at the same time the backup process copied the data and data was left in inconsistent state....

So is the question which one is better; the current standard go linter [`gofmt`](https://pkg.go.dev/cmd/gofmt) or stricter version of it [`gofumpt`](https://pkg.go.dev/mvdan.cc/gofumpt)? Personally I am fine with both. I do agree with...