Skip to content

Commit 4066c75

Browse files
authored
fix direction of comparison
1 parent 08397ad commit 4066c75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte_cdk/entrypoint.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ def discover(
240240
self, source_spec: ConnectorSpecification, config: TConfig
241241
) -> Iterable[AirbyteMessage]:
242242
self.set_up_secret_filter(config, source_spec.connectionSpecification)
243-
if not self.source.check_config_during_discover:
243+
if self.source.check_config_during_discover:
244244
self.validate_connection(source_spec, config)
245245
catalog = self.source.discover(self.logger, config)
246246

0 commit comments

Comments
 (0)