Skip to content

Commit 6259296

Browse files
committed
use master Fluent branch + disable test logs
1 parent b050392 commit 6259296

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Sources/MySQL/Connection/MySQLConnectionHandler.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ final class MySQLConnectionHandler: ChannelInboundHandler {
3434
// MARK: Private
3535

3636
private func handlePacket(ctx: ChannelHandlerContext, packet: MySQLPacket) throws {
37-
print("\(packet) \(state)")
37+
// print("✅ \(packet) \(state)")
3838
switch state {
3939
case .nascent:
4040
switch packet {

Sources/MySQL/Pipeline/MySQLPacketEncoder.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ final class MySQLPacketEncoder: MessageToByteEncoder {
2121
/// - data: The data to encode into a `ByteBuffer`.
2222
/// - out: The `ByteBuffer` into which we want to encode.
2323
func encode(ctx: ChannelHandlerContext, data message: MySQLPacket, out: inout ByteBuffer) throws {
24-
print("➡️ \(message)")
24+
// print("➡️ \(message)")
2525
// print("\(#function) \(session.handshakeState)")
2626
let writeOffset = out.writerIndex
2727
out.write(bytes: [0x00, 0x00, 0x00, 0x00]) // save room for length

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
steps:
104104
- run:
105105
name: Clone Fluent MySQL
106-
command: git clone -b gm https://github.com/vapor/fluent-mysql.git
106+
command: git clone -b master https://github.com/vapor/fluent-mysql.git
107107
working_directory: ~/
108108
- run:
109109
name: Switch Fluent MySQL to this MySQL revision

0 commit comments

Comments
 (0)