Skip to content

Commit 8bdd2e9

Browse files
committed
Merge branch 'develop'
2 parents 3bdc6fd + 7d74e47 commit 8bdd2e9

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.github/workflows/swift.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,9 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
image:
16-
- swift:5.0.3-xenial
1716
- swift:5.1.5-xenial
18-
- swift:5.2.5-xenial
19-
- swift:5.3.2-xenial
2017
- swift:5.3.2-bionic
18+
- swift:5.9.2-focal
2119
container: ${{ matrix.image }}
2220
steps:
2321
- name: Checkout Repository
@@ -27,19 +25,19 @@ jobs:
2725
- name: Build Swift Release Package
2826
run: swift build -c release
2927
- name: Run Tests
30-
run: swift test
28+
run: swift test --enable-test-discovery
3129
nextstep:
32-
runs-on: macos-latest
30+
runs-on: macos-13
3331
steps:
3432
- name: Select latest available Xcode
35-
uses: maxim-lobanov/setup-xcode@v1.2.1
33+
uses: maxim-lobanov/setup-xcode@v1
3634
with:
37-
xcode-version: 12.2
35+
xcode-version: '~15.0'
3836
- name: Checkout Repository
3937
uses: actions/checkout@v2
4038
- name: Build Swift Debug Package
4139
run: swift build -c debug
4240
- name: Build Swift Release Package
4341
run: swift build -c release
4442
- name: Run Tests
45-
run: swift test
43+
run: swift test --enable-test-discovery

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This is a **standalone project** and has no other dependencies but
1414

1515
Apart from the protocol implementation which can encode and decode
1616
[RESP](https://redis.io/topics/protocol) (REdis Serialization Protocol),
17-
we also provide a [Redis client module](Sources/Redis/README.md)
17+
we also provide a [Redis client module](https://github.com/NozeIO/swift-nio-redis-client)
1818
build on top.
1919

2020
What is Redis?

Sources/NIORedis/RESPChannelHandler.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ open class RESPChannelHandler : ChannelDuplexHandler {
5656
try parser.feed(buffer) { respValue in
5757
self.channelRead(context: context, value: respValue)
5858
}
59+
context.flush()
5960
}
6061
catch {
6162
context.fireErrorCaught(error)

0 commit comments

Comments
 (0)