You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Added
Concurrent commands and jobs. Command and jobs now run concurrently by default. You can modify the maximum number of concurrent events using the maxThreads property on the config object, by default its value is 4. To opt out of this feature you can set the value of the config key to 1 and the old synchronous behaviour will remain.
Hot reload functionality. If phial detects a file has changed it will reload the file and restart the bot. Enable this using the hotReload key in the phial config (Valid values True and False. Defaults to False)
Type hint validation. If you use inline type hints to specify the type of a command's parameter phial will now validate the user's input and convert it to the specified type. for use in your command function.
Changed
Scheduled jobs now will reschedule if the job's function errors.