Egon Elbre

Results 222 comments of Egon Elbre

Still flaky https://build.dev.storj.tools/job/storj-gerrit-verify/10659/testReport/junit/storj/io_storj_storagenode_gracefulexit/TestChore_Cockroach/ ``` chore_test.go:89: Error Trace: /var/lib/jenkins/workspace/storj-gerrit-verify/storagenode/gracefulexit/chore_test.go:89 /var/lib/jenkins/workspace/storj-gerrit-verify/storagenode/gracefulexit/chore_test.go:41 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testplanet/run.go:83 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testmonkit/run.go:49 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testmonkit/run.go:43 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testplanet/run.go:51 Error: "[]" should have 1 item(s), but has 0 ```

Still flaky https://build.dev.storj.tools/job/storj-gerrit-verify/14153/testReport/junit/storj/io_storj_storagenode_gracefulexit/TestChore_Cockroach/ ``` chore_test.go:89: Error Trace: /var/lib/jenkins/workspace/storj-gerrit-verify/storagenode/gracefulexit/chore_test.go:89 /var/lib/jenkins/workspace/storj-gerrit-verify/storagenode/gracefulexit/chore_test.go:41 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testplanet/run.go:67 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testmonkit/run.go:49 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testmonkit/run.go:43 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testplanet/run.go:47 Error: "[]" should have 1 item(s), but has 0 Test: TestChore/Cockroach ```

Still flaky https://build.dev.storj.tools/job/storj-gerrit-verify/15915/testReport/junit/storj/io_storj_storagenode_gracefulexit/TestChore_Cockroach/: ``` Error Trace: /var/lib/jenkins/workspace/storj-gerrit-verify/storagenode/gracefulexit/chore_test.go:89 /var/lib/jenkins/workspace/storj-gerrit-verify/storagenode/gracefulexit/chore_test.go:41 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testplanet/run.go:72 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testmonkit/run.go:49 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testmonkit/run.go:43 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testplanet/run.go:52 Error: "[]" should have 1 item(s), but has 0 Test: TestChore/Cockroach --- FAIL: TestChore/Cockroach (3.64s) ```

https://build.dev.storj.tools/job/storj-gerrit-verify/17816/testReport/junit/storj/io_storj_storagenode_gracefulexit/TestChore_Cockroach/ ``` chore_test.go:89: Error Trace: /var/lib/jenkins/workspace/storj-gerrit-verify/storagenode/gracefulexit/chore_test.go:89 /var/lib/jenkins/workspace/storj-gerrit-verify/storagenode/gracefulexit/chore_test.go:41 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testplanet/run.go:74 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testmonkit/run.go:49 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testmonkit/run.go:43 /var/lib/jenkins/workspace/storj-gerrit-verify/private/testplanet/run.go:52 Error: "[]" should have 1 item(s), but has 0 Test: TestChore/Cockroach ```

> Do not merge until the following are resolved: It seems those issues have been resolved now.

There are a few ideas I can come up with. ## Separate service Instead of using linksharing directly, there can be a separate service that creates macaroons that have a...

Are we missing caching headers for the content? I don't see a reason why they should be such a big impact. Also, are we missing compression for the assets?

AFAIK, https://github.com/storj/gateway-mt/issues/361#issuecomment-1718344528 has not yet been implemented or will that be handled in a separate issue?

Maybe: ``` model baz ( field id bytea ( default 50, type "storj.io/common/uuid.UUID" ) ) ``` But, this should work as well, most of the time ``` model baz (...

One option would be to allow specifying custom types,e.g. ``` type StorjUUID ( sqlite text postgres bytea go storj.io/common/uuid.UUID ) model baz ( field id StorjUUID ( default 50 )...