File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11{
22 "base" : " .story-body [id^=zone-el]" ,
33 "ignore" : [" zone-el-16" ],
4+ "cadence" : {
5+ "subscriber" : 4 ,
6+ "dma" : 3 ,
7+ "default" : 2
8+ },
49 "zones" : [
510 {
611 "id" : " zone-taboola-recommendations" ,
Original file line number Diff line number Diff line change @@ -31,12 +31,7 @@ function distributeZones(locker) {
3131
3232 // Set cadence for subscriber vs. nonsubscriber vs. nonsubscriber out of market in test domains
3333 const subscriber = locker . user . isSubscriber ( ) ;
34- const dma = subscriber ? true : await locker . user . isInDMA ( ) ;
35- const nonsubscriberOutOfMarket = ! subscriber && ! dma ;
36- const domainName = locker . getConfig ( 'domainName' ) ;
37- const allowedDomains = [ "www.bnd.com" , "www.myrtlebeachonline.com" ] ;
38- const cadence = allowedDomains . includes ( domainName ) && nonsubscriberOutOfMarket ? 2 : ( subscriber ? 4 : 3 ) ;
39-
34+ const cadence = subscriber ? 4 : 2 ;
4035 zones . distribute ( cadence ) ;
4136
4237 // Temporary cleanup
You can’t perform that action at this time.
0 commit comments