fix typo magicRecsNotfication > magicRecsNotification

This commit is contained in:
Adam LaCombe 2023-03-31 22:53:03 +00:00
parent ec83d01dca
commit e13c4a9233
4 changed files with 5 additions and 5 deletions

View File

@ -492,7 +492,7 @@ object ExternalDataSources {
}
}
def magicRecsNotficationOpenOrClickEventsSource(
def magicRecsNotificationOpenOrClickEventsSource(
implicit dateRange: DateRange
): TypedPipe[MagicRecsNotificationLite] = {
DAL

View File

@ -491,7 +491,7 @@ object AssembleMultiTypeGraph {
// user-MRNotifOpenOrClick events from last 7 days
val userMRNotifOpenOrClickEvents: TypedPipe[MagicRecsNotificationLite] =
ExternalDataSources.magicRecsNotficationOpenOrClickEventsSource(dateRange =
ExternalDataSources.magicRecsNotificationOpenOrClickEventsSource(dateRange =
DateRange(dateRange.end - Days(7), dateRange.end))
// user-searchQuery strings from last 7 days

View File

@ -236,13 +236,13 @@ object ExternalDataSources {
}
}
def magicRecsNotficationOpenOrClickEventsSource(
def magicRecsNotificationOpenOrClickEventsSource(
interval: Interval
)(
implicit sc: ScioContext
): SCollection[MagicRecsNotificationLite] = {
sc.customInput(
"ReadMagicRecsNotficationOpenOrClickEventsSource",
"ReadMagicRecsNotificationOpenOrClickEventsSource",
DAL
.read(MagicrecsNotificationLite1DayLagScalaDataset, interval, DAL.Environment.Prod))
.filter { entry =>

View File

@ -423,7 +423,7 @@ trait AssembleMultiTypeGraphScioBaseApp extends ScioBeamJob[DateRangeOptions] {
// user-MRNotifOpenOrClick events from last 7 days
val userMRNotifOpenOrClickEvents =
ExternalDataSources.magicRecsNotficationOpenOrClickEventsSource(interval_7days)
ExternalDataSources.magicRecsNotificationOpenOrClickEventsSource(interval_7days)
// user-searchQuery strings from last 7 days
val userSearchQueryEdges =