1
0
mirror of synced 2025-12-25 02:09:19 -05:00

fix CloudDeploymentPostgresSourceTest (#32264)

Co-authored-by: stephane-airbyte <stephane-airbyte@users.noreply.github.com>
This commit is contained in:
Stephane Geneix
2023-11-07 15:40:38 -08:00
committed by GitHub
parent b7eab7564d
commit ae44f34538

View File

@@ -123,7 +123,8 @@ import org.slf4j.LoggerFactory;
public class PostgresSource extends AbstractJdbcSource<PostgresType> implements Source {
private static final String DEPLOYMENT_MODE = System.getenv(AdaptiveSourceRunner.DEPLOYMENT_MODE_KEY);
// This is not a static because we want it to be initialized at instance creation time
private final String DEPLOYMENT_MODE = System.getenv(AdaptiveSourceRunner.DEPLOYMENT_MODE_KEY);
private static final Logger LOGGER = LoggerFactory.getLogger(PostgresSource.class);
private static final int INTERMEDIATE_STATE_EMISSION_FREQUENCY = 10_000;
public static final String PARAM_SSLMODE = "sslmode";