Skip to content

Commit 9851645

Browse files
committed
Test compilation fix
1 parent adc5405 commit 9851645

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/replicator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ pub struct ReplicatorConfiguration {
748748
/** Specify the replicator to accept only self-signed certs. Any non-self-signed certs will be rejected
749749
to avoid accidentally using this mode with the non-self-signed certs in production. */
750750
#[cfg(feature = "enterprise")]
751-
accept_only_self_signed_server_certificate: bool,
751+
pub accept_only_self_signed_server_certificate: bool,
752752
}
753753

754754
//======== LIFECYCLE

tests/utils.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,8 @@ fn generate_replication_configuration(
160160
document_ids: config.document_ids,
161161
collections: None,
162162
accept_parent_domain_cookies: false,
163+
#[cfg(feature = "enterprise")]
164+
accept_only_self_signed_server_certificate: false,
163165
}
164166
}
165167

0 commit comments

Comments
 (0)