feat(iflow): add masked token logs; increase refresh lead to 24h

This commit is contained in:
hkfires
2025-10-19 10:56:29 +08:00
parent 674393ec12
commit 4504ba5329
2 changed files with 15 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ func (a *IFlowAuthenticator) Provider() string { return "iflow" }
// RefreshLead indicates how soon before expiry a refresh should be attempted.
func (a *IFlowAuthenticator) RefreshLead() *time.Duration {
d := 3 * time.Hour
d := 24 * time.Hour
return &d
}