Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit 039376b

Browse files
committed
Remove test rollout pixel.
1 parent 1c2abb9 commit 039376b

File tree

4 files changed

+4
-14
lines changed

4 files changed

+4
-14
lines changed

Core/PixelEvent.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,6 @@ extension Pixel {
458458
case networkProtectionVPNConfigurationRemovalFailed
459459

460460
case networkProtectionConfigurationInvalidPayload(configuration: Configuration)
461-
case networkProtectionConfigurationPixelTest
462461

463462
case networkProtectionMalformedErrorDetected
464463

@@ -1263,7 +1262,6 @@ extension Pixel.Event {
12631262
case .networkProtectionVPNConfigurationRemovalFailed: return "m_netp_vpn_configuration_removal_failed"
12641263

12651264
case .networkProtectionConfigurationInvalidPayload(let config): return "m_netp_vpn_configuration_\(config.rawValue)_invalid_payload"
1266-
case .networkProtectionConfigurationPixelTest: return "m_netp_vpn_configuration_pixel_test"
12671265

12681266
case .networkProtectionMalformedErrorDetected: return "m_netp_vpn_malformed_error_detected"
12691267

DuckDuckGo.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10969,8 +10969,8 @@
1096910969
isa = XCRemoteSwiftPackageReference;
1097010970
repositoryURL = "https://github.com/DuckDuckGo/BrowserServicesKit";
1097110971
requirement = {
10972-
kind = exactVersion;
10973-
version = 203.1.0;
10972+
branch = "sam/remove-test-rollout-pixel";
10973+
kind = branch;
1097410974
};
1097510975
};
1097610976
9F8FE9472BAE50E50071E372 /* XCRemoteSwiftPackageReference "lottie-spm" */ = {

DuckDuckGo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PacketTunnelProvider/NetworkProtection/NetworkProtectionPacketTunnelProvider.swift

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ final class NetworkProtectionPacketTunnelProvider: PacketTunnelProvider {
4141

4242
private let configurationStore = ConfigurationStore()
4343
private let configurationManager: ConfigurationManager
44-
private var configuationSubscription: AnyCancellable?
4544

4645
// MARK: - PacketTunnelProvider.Event reporting
4746

@@ -412,13 +411,6 @@ final class NetworkProtectionPacketTunnelProvider: PacketTunnelProvider {
412411
// Load cached config (if any)
413412
privacyConfigurationManager.reload(etag: configurationStore.loadEtag(for: .privacyConfiguration), data: configurationStore.loadData(for: .privacyConfiguration))
414413

415-
configuationSubscription = privacyConfigurationManager.updatesPublisher
416-
.sink {
417-
if privacyConfigurationManager.privacyConfig.isSubfeatureEnabled(BackgroundAgentPixelTestSubfeature.pixelTest) {
418-
DailyPixel.fire(pixel: .networkProtectionConfigurationPixelTest)
419-
}
420-
}
421-
422414
// Align Subscription environment to the VPN environment
423415
var subscriptionEnvironment = SubscriptionEnvironment.default
424416
switch settings.selectedEnvironment {

0 commit comments

Comments
 (0)