[GH] (kvrocks): Workflow run "SonarCloud Analysis" failed!

2024-03-10 Thread GitBox


The GitHub Actions job "SonarCloud Analysis" on kvrocks.git has failed.
Run started by GitHub user aleksraiden (triggered by aleksraiden).

Head commit for run:
19d7bad87c0b147c96d94b79c1b1ed1e0d894e38 / mwish 
Extract common/port.h and optimize dbstats (#2145)

Report URL: https://github.com/apache/kvrocks/actions/runs/8220652658

With regards,
GitHub Actions via GitBox



[GH] (kvrocks): Workflow run "SonarCloud Analysis" is working again!

2024-03-10 Thread GitBox


The GitHub Actions job "SonarCloud Analysis" on kvrocks.git has succeeded.
Run started by GitHub user aleksraiden (triggered by aleksraiden).

Head commit for run:
19d7bad87c0b147c96d94b79c1b1ed1e0d894e38 / mwish 
Extract common/port.h and optimize dbstats (#2145)

Report URL: https://github.com/apache/kvrocks/actions/runs/8220664199

With regards,
GitHub Actions via GitBox



[GH] (kvrocks): Workflow run "CI" failed!

2024-03-10 Thread GitBox


The GitHub Actions job "CI" on kvrocks.git has failed.
Run started by GitHub user git-hulk (triggered by git-hulk).

Head commit for run:
bebc1b474a055ad401215c3f21555858c88c7b5a / hulk 
Merge branch 'unstable' into aleksraiden-sonarcube-new-code

Report URL: https://github.com/apache/kvrocks/actions/runs/8222701749

With regards,
GitHub Actions via GitBox



[GH] (kvrocks): Workflow run "CI" is working again!

2024-03-10 Thread GitBox


The GitHub Actions job "CI" on kvrocks.git has succeeded.
Run started by GitHub user git-hulk (triggered by git-hulk).

Head commit for run:
030d15ef289517226703087997f1394016e63cd8 / Aleks Lozovyuk 

Fix build warnings that local variable 's' will be copied despite being 
returned by name (#2148)

Report URL: https://github.com/apache/kvrocks/actions/runs/8222700593

With regards,
GitHub Actions via GitBox



[GH] (kvrocks): Workflow run "CI" failed!

2024-03-10 Thread GitBox


The GitHub Actions job "CI" on kvrocks.git has failed.
Run started by GitHub user git-hulk (triggered by git-hulk).

Head commit for run:
2d6f9759768d5120320ab7c1d8270af6a889bae5 / git-hulk 
Fix missing fields in HELLO command response

Currently, we're missing the 'version', 'role', 'modules' in HELLO
command which may cause the compability issue in some clients like Java
lettuce:

```
Caused by: java.lang.IllegalArgumentException: Version must not be null
at io.lettuce.core.internal.LettuceAssert.notNull(LettuceAssert.java:71)
at 
io.lettuce.core.RedisHandshake$RedisVersion.(RedisHandshake.java:333)
at 
io.lettuce.core.RedisHandshake$RedisVersion.of(RedisHandshake.java:362)
at 
io.lettuce.core.RedisHandshake.applyPostHandshake(RedisHandshake.java:249)
at 
io.lettuce.core.RedisHandshake.lambda$initialize$0(RedisHandshake.java:99)
```

For the HELLO command response refer: https://redis.io/commands/hello/

Report URL: https://github.com/apache/kvrocks/actions/runs/8223057264

With regards,
GitHub Actions via GitBox



[GH] (kvrocks): Workflow run "CI" failed!

2024-03-10 Thread GitBox


The GitHub Actions job "CI" on kvrocks.git has failed.
Run started by GitHub user git-hulk (triggered by aleksraiden).

Head commit for run:
2d6f9759768d5120320ab7c1d8270af6a889bae5 / git-hulk 
Fix missing fields in HELLO command response

Currently, we're missing the 'version', 'role', 'modules' in HELLO
command which may cause the compability issue in some clients like Java
lettuce:

```
Caused by: java.lang.IllegalArgumentException: Version must not be null
at io.lettuce.core.internal.LettuceAssert.notNull(LettuceAssert.java:71)
at 
io.lettuce.core.RedisHandshake$RedisVersion.(RedisHandshake.java:333)
at 
io.lettuce.core.RedisHandshake$RedisVersion.of(RedisHandshake.java:362)
at 
io.lettuce.core.RedisHandshake.applyPostHandshake(RedisHandshake.java:249)
at 
io.lettuce.core.RedisHandshake.lambda$initialize$0(RedisHandshake.java:99)
```

For the HELLO command response refer: https://redis.io/commands/hello/

Report URL: https://github.com/apache/kvrocks/actions/runs/8223057264

With regards,
GitHub Actions via GitBox



[GH] (kvrocks): Workflow run "CI" is working again!

2024-03-10 Thread GitBox


The GitHub Actions job "CI" on kvrocks.git has succeeded.
Run started by GitHub user git-hulk (triggered by git-hulk).

Head commit for run:
734d7c970f5e1e2f4f202314831ccdbd7bad7df6 / git-hulk 
Fix hello test cases

Report URL: https://github.com/apache/kvrocks/actions/runs/8225767893

With regards,
GitHub Actions via GitBox



[GH] (kvrocks): Workflow run "CI" failed!

2024-03-10 Thread GitBox


The GitHub Actions job "CI" on kvrocks.git has failed.
Run started by GitHub user tutububug (triggered by git-hulk).

Head commit for run:
c780c842eda630b837414a405ac04a2dcf123eeb / yangxiao 
code format

Report URL: https://github.com/apache/kvrocks/actions/runs/8215788698

With regards,
GitHub Actions via GitBox



[GH] (kvrocks): Workflow run "CI" is working again!

2024-03-10 Thread GitBox


The GitHub Actions job "CI" on kvrocks.git has succeeded.
Run started by GitHub user git-hulk (triggered by git-hulk).

Head commit for run:
86d34ac766d2765223594cdb11f03b5eef33345e / hulk 
Fix missing fields in HELLO command response (#2150)

Currently, we're missing the 'version', 'role', 'modules' in the HELLO command 
which may cause compatibility issue in some clients like Java lettuce:

```
Caused by: java.lang.IllegalArgumentException: Version must not be null
at io.lettuce.core.internal.LettuceAssert.notNull(LettuceAssert.java:71)
at 
io.lettuce.core.RedisHandshake$RedisVersion.(RedisHandshake.java:333)
at 
io.lettuce.core.RedisHandshake$RedisVersion.of(RedisHandshake.java:362)
at 
io.lettuce.core.RedisHandshake.applyPostHandshake(RedisHandshake.java:249)
at 
io.lettuce.core.RedisHandshake.lambda$initialize$0(RedisHandshake.java:99)
```

For the HELLO command response refer: https://redis.io/commands/hello/

Report URL: https://github.com/apache/kvrocks/actions/runs/8228303639

With regards,
GitHub Actions via GitBox