mirror of
https://github.com/gravitl/netmaker.git
synced 2025-10-16 05:41:13 +08:00
fix(NET-1175): use default trial end date
this "more recent" arbitrary date is needed for hubspot to consume exported data without throwing out of date range exeptions
This commit is contained in:
@@ -21,9 +21,11 @@ var (
|
||||
EgressesLimit = 1000000000
|
||||
// FreeTier - specifies if free tier
|
||||
FreeTier = false
|
||||
// DefaultTrialEndDate - is a placeholder date for not applicable trial end dates
|
||||
DefaultTrialEndDate, _ = time.Parse("2006-Jan-02", "2021-Apr-01")
|
||||
|
||||
GetTrialEndDate = func() (time.Time, error) {
|
||||
return time.Time{}, nil
|
||||
return DefaultTrialEndDate, nil
|
||||
}
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user