GetMessageAfterGracePeriod
No overview available.
def GetMessageAfterGracePeriod(
message: string,
gracePeriod: time.Duration
) - > string
Formats a message to indicate that a specified grace period has been exceeded. This function is used to create a standardized string that includes both the grace period duration and the original message.
Parameters
| Name | Type | Description |
|---|---|---|
| message | string | The original message to be included in the formatted output. |
| gracePeriod | time.Duration | The duration of the grace period that was exceeded, which will be included in the formatted output. |
Returns
| Type | Description |
|---|---|
string | A formatted string indicating the grace period exceeded and the original message. |