Skip to content

Commit d033817

Browse files
committed
fix changes review
1 parent 1ed2e98 commit d033817

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

postgresql-async/src/main/scala/com/github/mauricio/async/db/postgresql/messages/frontend/PreparedStatementExecuteMessage.scala

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2013 Maurício Linhares
3+
*
4+
* Maurício Linhares licenses this file to you under the Apache License,
5+
* version 2.0 (the "License"); you may not use this file except in compliance
6+
* with the License. You may obtain a copy of the License at:
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13+
* License for the specific language governing permissions and limitations
14+
* under the License.
15+
*/
16+
117
package com.github.mauricio.async.db.postgresql.messages.frontend
218

319
import com.github.mauricio.async.db.postgresql.messages.backend.ServerMessage

postgresql-async/src/test/scala/com/github/mauricio/async/db/postgresql/DatabaseTestHelper.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ trait DatabaseTestHelper {
107107
}
108108

109109
def await[T](future: Future[T]): T = {
110-
Await.result(future, Duration(10, TimeUnit.SECONDS))
110+
Await.result(future, Duration(5, TimeUnit.SECONDS))
111111
}
112112

113113
class TestSubscriber extends Subscriber[RowData] {

0 commit comments

Comments
 (0)