Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#30302 Make false by default all the boolean that we have in the Even… #30311

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public CollectorPayloadBean collect(final CollectorContextMap collectorContextMa
match.get(whoIAM).collect(innerCollectorContextMap, collectorPayloadBean);
}

collectorPayloadBean.put("comeFromVanityURL", "true");
collectorPayloadBean.put("comeFromVanityURL", true);
return collectorPayloadBean;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@ public CollectorPayloadBean collect(final CollectorContextMap collectorContextMa
WebAPILocator.getPersonalizationWebAPI().getContainerPersonalization(request));

collectorPayloadBean.put("renderMode", PageMode.get(request).toString().replace("_MODE", ""));

//Include default vakue for other Bool fiedls in the Clickhouse table

collectorPayloadBean.put("comeFromVanityURL", false);
collectorPayloadBean.put("isexperimentpage", false);
collectorPayloadBean.put("istargetpage", false);

return collectorPayloadBean;
}

Expand Down