File tree Expand file tree Collapse file tree
contract-tests/server-contract-tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,9 +28,6 @@ config::builders::DataSystemBuilder::FDv2 BuildFDv2(
2828 s.InitialReconnectDelay (std::chrono::milliseconds (
2929 *sync.streaming ->initialRetryDelayMs ));
3030 }
31- if (cfg.payloadFilter ) {
32- s.Filter (*cfg.payloadFilter );
33- }
3431 fdv2.Synchronizer (std::move (s));
3532 } else if (sync.polling ) {
3633 auto p = decltype (fdv2)::Polling ();
@@ -43,9 +40,6 @@ config::builders::DataSystemBuilder::FDv2 BuildFDv2(
4340 std::chrono::milliseconds (
4441 *sync.polling ->pollIntervalMs )));
4542 }
46- if (cfg.payloadFilter ) {
47- p.Filter (*cfg.payloadFilter );
48- }
4943 fdv2.Synchronizer (std::move (p));
5044 }
5145 }
@@ -58,9 +52,6 @@ config::builders::DataSystemBuilder::FDv2 BuildFDv2(
5852 if (init.polling ->baseUri ) {
5953 p.BaseUrl (*init.polling ->baseUri );
6054 }
61- if (cfg.payloadFilter ) {
62- p.Filter (*cfg.payloadFilter );
63- }
6455 fdv2.Initializer (std::move (p));
6556 }
6657 }
Original file line number Diff line number Diff line change 11# C++ implements TTL-based FDv1 fallback; this scenario tests the older terminal semantics. Tracked in SDK-2527.
22streaming/fdv2/FDv1 fallback directive/directive without FDv1 fallback configured halts the data system
3+
4+ # FDv2 public payload filter API is not exposed by the C++ SDK.
5+ streaming/requests/URL path is computed correctly/environment_filter_key="encoding_not_necessary"/base URI has no trailing slash/GET
6+ streaming/requests/URL path is computed correctly/environment_filter_key="encoding_not_necessary"/base URI has a trailing slash/GET
7+ polling/requests/URL path is computed correctly/environment_filter_key="encoding_not_necessary"/base URI has no trailing slash/GET
8+ polling/requests/URL path is computed correctly/environment_filter_key="encoding_not_necessary"/base URI has a trailing slash/GET
You can’t perform that action at this time.
0 commit comments