Skip to content

Commit

Permalink
[Vitess JDBC] Incorporated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
NAVEEN NAHATA authored and NAVEEN NAHATA committed Mar 11, 2016
1 parent 2a30f70 commit 90789d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ public void setQueryTimeout(int seconds) throws SQLException {
throw new SQLException(
Constants.SQLExceptionMessages.ILLEGAL_VALUE_FOR + "query timeout");
}
this.queryTimeoutInMillis = seconds * 1000;
this.queryTimeoutInMillis = (long) seconds * 1000;
}

/**
Expand Down

0 comments on commit 90789d6

Please sign in to comment.