Skip to content

Commit c63a895

Browse files
authored
Update AbstractTeradataConnector.java
1 parent a2f2cda commit c63a895

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dumper/app/src/main/java/com/google/edwmigration/dumper/application/dumper/connector/teradata/AbstractTeradataConnector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
@RespectsInput(
7575
order = ConnectorArguments.OPT_PORT_ORDER,
7676
arg = ConnectorArguments.OPT_PORT,
77-
description = "The port of the server.",
77+
description = "The port number of the server.",
7878
required = ConnectorArguments.OPT_REQUIRED_IF_NOT_URL,
7979
defaultValue = "" + AbstractTeradataConnector.OPT_PORT_DEFAULT)
8080
@RespectsArgumentUser
@@ -87,7 +87,7 @@ public abstract class AbstractTeradataConnector extends AbstractJdbcConnector {
8787
@SuppressWarnings("UnusedVariable")
8888
private static final Logger logger = LoggerFactory.getLogger(AbstractTeradataConnector.class);
8989

90-
public static final int OPT_PORT_DEFAULT = 12345;
90+
public static final int OPT_PORT_DEFAULT = 1025;
9191
protected static final DateTimeFormatter SQL_FORMAT =
9292
DateTimeFormatter.ISO_OFFSET_DATE_TIME.withZone(ZoneOffset.UTC);
9393
@VisibleForTesting /* pp */ static final String DEF_LOG_TABLE = "dbc.DBQLogTbl";

0 commit comments

Comments
 (0)