Derek P. Moore

Results 58 comments of Derek P. Moore

@andreipaduroiu -- Or somehow there's a race for the port it found? I was testing in a constrained environment, so if closing the tested port is async, maybe it isn't...

@shrids -- I was testing in a constrained environment, so I was running into every intermittent failure that results from coarse-grained timing issues (bind failure was just one of many...

Seen in recent failed Actions build: ``` io.pravega.storage.extendeds3.ExtendedS3SimpleStorageTests$ExtendedS3ChunkStorageSystemJournalTests > testSimpleBootstrapWithTruncateSingleChunk FAILED java.io.IOException: Failed to bind to /127.0.0.1:49812 at org.eclipse.jetty.server.ServerConnector.openAcceptChannel(ServerConnector.java:346) at org.eclipse.jetty.server.ServerConnector.open(ServerConnector.java:307) at org.eclipse.jetty.server.AbstractNetworkConnector.doStart(AbstractNetworkConnector.java:80) at org.eclipse.jetty.server.ServerConnector.doStart(ServerConnector.java:231) at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72) at org.eclipse.jetty.server.Server.doStart(Server.java:385) at...

``` io.pravega.storage.extendeds3.ExtendedS3SimpleStorageTests$ExtendedS3ChunkStorageTests > testDeleteAfterOpen FAILED java.io.IOException: Failed to bind to /127.0.0.1:36664 at org.eclipse.jetty.server.ServerConnector.openAcceptChannel(ServerConnector.java:346) at org.eclipse.jetty.server.ServerConnector.open(ServerConnector.java:307) at org.eclipse.jetty.server.AbstractNetworkConnector.doStart(AbstractNetworkConnector.java:80) at org.eclipse.jetty.server.ServerConnector.doStart(ServerConnector.java:231) at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72) at org.eclipse.jetty.server.Server.doStart(Server.java:385) at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:72) at org.gaul.s3proxy.S3Proxy.start(S3Proxy.java:389) at io.pravega.storage.extendeds3.S3ProxyImpl.start(S3ProxyImpl.java:83) at...

Can you report the bug upstream to the SDN list admins? FWIW, in my use case, I decode the addresses to retrieve the byte array of the hash that the...

That would be great to have! Would you like to raise a PR for it? Do you use the ZooKeeper Operator with Pravega? Or do you use it with another...

@mmoscher -- We can look at making whatever changes are needed to the GHA workflows. Let me review your PR and your analysis there.

@jravetch -- I think this is a technicality of how the release needs to managed in conjunction with https://github.com/pravega/charts Maybe @anishakj or @SrishT can explain further. How do you consume...

@RaulGracia -- There's another comparison routine in the client in `ReaderGroupConfig`, to verify that a "start" StreamCut comes before an "end" StreamCut: https://github.com/pravega/pravega/blob/f9ed2e100cc240f716c43f677c41d18f79c44e41/client/src/main/java/io/pravega/client/stream/ReaderGroupConfig.java#L298 The `compareStreamCuts()` routine you point out makes...

@lammel @chiyutianyi -- Can we change this PR to expose `BindHeaders()` on `echo.Context` such that I can do: `c.BindHeaders(params)` instead of: `(&echo.DefaultBinder{}).BindHeaders(*c, params)` Thanks!