File tree Expand file tree Collapse file tree 5 files changed +4
-13
lines changed
packages/backend/src/apps/scheduler Expand file tree Collapse file tree 5 files changed +4
-13
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 88} from '../../common/constants'
99import cronTimes from '../../common/cron-times'
1010import getDateTimeObjectRepresentation from '../../common/get-date-time-object'
11- import getInternalId from '../../common/get-internal-id'
1211import getNextCronDateTime from '../../common/get-next-cron-date-time'
1312import getDataOutMetadata from '../get-data-out-metadata'
1413
@@ -69,7 +68,7 @@ const trigger: IRawTrigger = {
6968 const dataItem = {
7069 raw : dateTimeObjectRepresentation ,
7170 meta : {
72- internalId : getInternalId ( dateTime ) ,
71+ internalId : dateTime . toMillis ( ) . toString ( ) ,
7372 } ,
7473 }
7574
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import { DateTime } from 'luxon'
44
55import cronTimes from '../../common/cron-times'
66import getDateTimeObjectRepresentation from '../../common/get-date-time-object'
7- import getInternalId from '../../common/get-internal-id'
87import getNextCronDateTime from '../../common/get-next-cron-date-time'
98import getDataOutMetadata from '../get-data-out-metadata'
109
@@ -54,7 +53,7 @@ const trigger: IRawTrigger = {
5453 const dataItem = {
5554 raw : dateTimeObjectRepresentation ,
5655 meta : {
57- internalId : getInternalId ( dateTime ) ,
56+ internalId : dateTime . toMillis ( ) . toString ( ) ,
5857 } ,
5958 }
6059
Original file line number Diff line number Diff line change 88} from '../../common/constants'
99import cronTimes from '../../common/cron-times'
1010import getDateTimeObjectRepresentation from '../../common/get-date-time-object'
11- import getInternalId from '../../common/get-internal-id'
1211import getNextCronDateTime from '../../common/get-next-cron-date-time'
1312import getDataOutMetadata from '../get-data-out-metadata'
1413
@@ -189,7 +188,7 @@ const trigger: IRawTrigger = {
189188 const dataItem = {
190189 raw : dateTimeObjectRepresentation ,
191190 meta : {
192- internalId : getInternalId ( dateTime ) ,
191+ internalId : dateTime . toMillis ( ) . toString ( ) ,
193192 } ,
194193 }
195194
Original file line number Diff line number Diff line change 88} from '../../common/constants'
99import cronTimes from '../../common/cron-times'
1010import getDateTimeObjectRepresentation from '../../common/get-date-time-object'
11- import getInternalId from '../../common/get-internal-id'
1211import getNextCronDateTime from '../../common/get-next-cron-date-time'
1312import getDataOutMetadata from '../get-data-out-metadata'
1413
@@ -93,7 +92,7 @@ const trigger: IRawTrigger = {
9392 const dataItem = {
9493 raw : dateTimeObjectRepresentation ,
9594 meta : {
96- internalId : getInternalId ( dateTime ) ,
95+ internalId : dateTime . toMillis ( ) . toString ( ) ,
9796 } ,
9897 }
9998
You can’t perform that action at this time.
0 commit comments