replaced sched_hangup with sched_transfer

This commit is contained in:
gezimbll
2025-08-06 16:56:44 +02:00
committed by Dan Christian Bogos
parent e194979b99
commit c233daef58
20 changed files with 536 additions and 13 deletions

View File

@@ -2557,6 +2557,7 @@ const (
EventSocketConnsCfg = "event_socket_conns"
EmptyBalanceContext = "empty_balance_context"
ActiveSessionDelimiterCfg = "active_session_delimiter"
SchedTransferExtensionCfg = "sched_transfer_extension"
)
// From Config

View File

@@ -377,6 +377,9 @@ func IfaceAsString(fld any) (out string) {
case []uint8:
return string(value) // byte is an alias for uint8 conversions implicit
case time.Duration:
if value == -1 {
return "-1"
}
return value.String()
case time.Time:
return value.Format(time.RFC3339)