This repository was archived by the owner on Jun 21, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +15
-9
lines changed
src/test/java/io/scalecube/services/gateway/websocket Expand file tree Collapse file tree 6 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 3333 env :
3434 GITHUB_TOKEN : ${{ secrets.ORGANIZATION_TOKEN }}
3535 - name : Maven Verify
36- run : mvn verify -B
36+ run : |
37+ sudo echo "127.0.0.1 $(eval hostname)" | sudo tee -a /etc/hosts
38+ mvn verify -B
Original file line number Diff line number Diff line change 2525 server-password : GITHUB_TOKEN
2626 - name : Deploy pre-release version to GitHub Packages
2727 run : |
28+ sudo echo "127.0.0.1 $(eval hostname)" | sudo tee -a /etc/hosts
2829 pre_release_version=${{ github.event.release.tag_name }}
2930 echo Pre-release version $pre_release_version
3031 mvn versions:set -DnewVersion=$pre_release_version -DgenerateBackupPoms=false
Original file line number Diff line number Diff line change 3131 env :
3232 GITHUB_TOKEN : ${{ secrets.ORGANIZATION_TOKEN }}
3333 - name : Maven Verify
34- run : mvn verify -B
34+ run : |
35+ sudo echo "127.0.0.1 $(eval hostname)" | sudo tee -a /etc/hosts
36+ mvn verify -B
3537 - name : Configure git
3638 run : |
3739 git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com"
Original file line number Diff line number Diff line change 5757 </scm >
5858
5959 <properties >
60- <scalecube-services .version>2.10.17 </scalecube-services .version>
60+ <scalecube-services .version>2.10.18 </scalecube-services .version>
6161
62- <reactor .version>2020.0.5 </reactor .version>
62+ <reactor .version>2020.0.6 </reactor .version>
6363 <rsocket .version>1.0.4</rsocket .version>
64- <netty .version>4.1.60 .Final</netty .version>
64+ <netty .version>4.1.63 .Final</netty .version>
6565 <jackson .version>2.11.0</jackson .version>
6666 <metrics .version>3.1.2</metrics .version>
6767 <slf4j .version>1.7.30</slf4j .version>
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
2- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
35 <parent >
46 <artifactId >scalecube-gateway-parent</artifactId >
57 <groupId >io.scalecube</groupId >
Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ class WebsocketClientTest extends BaseTest {
3939 private static Address gatewayAddress ;
4040 private static Microservices service ;
4141 private static GatewayClient client ;
42- private static ServiceCall serviceCall ;
4342
4443 @ BeforeAll
4544 static void beforeAll () {
@@ -87,13 +86,13 @@ static void afterAll() {
8786 }
8887
8988 @ RepeatedTest (300 )
90- void testCloseServiceStreamAfterLostConnection () {
89+ void testMessageSequence () {
9190
9291 client =
9392 new WebsocketGatewayClient (
9493 GatewayClientSettings .builder ().address (gatewayAddress ).build (), CLIENT_CODEC );
9594
96- serviceCall =
95+ ServiceCall serviceCall =
9796 new ServiceCall ()
9897 .transport (new GatewayClientTransport (client ))
9998 .router (new StaticAddressRouter (gatewayAddress ));
You can’t perform that action at this time.
0 commit comments