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
A misconfiguration in the plugin or the chosen data store will result in an error somewhere in the startup process. Because the commands are set up before the stats store is initialized, the commands can still run even though the initialization fails (this is good, because it gives us a way to report issues inside the commands).
To test this out, try spinning up the plugin with an invalid store type like type: foo, then run a command like /ma global-stats.
All commands currently assume the stats store is non-null, and in the case of a failed initialization, that assumption is wrong. It would be a good idea to make the commands check for this and report some sort of generic No stats store configured. Check the server log for errors. error message.
The text was updated successfully, but these errors were encountered:
A misconfiguration in the plugin or the chosen data store will result in an error somewhere in the startup process. Because the commands are set up before the stats store is initialized, the commands can still run even though the initialization fails (this is good, because it gives us a way to report issues inside the commands).
To test this out, try spinning up the plugin with an invalid store type like
type: foo
, then run a command like/ma global-stats
.All commands currently assume the stats store is non-null, and in the case of a failed initialization, that assumption is wrong. It would be a good idea to make the commands check for this and report some sort of generic
No stats store configured. Check the server log for errors.
error message.The text was updated successfully, but these errors were encountered: