Merge pull request #699 from Kilowhisky/fix/698_2

Add auth to allowed commands while data is loading
This commit is contained in:
Josh Baker 2023-07-31 04:34:56 -07:00 committed by GitHub
commit c1ca106706
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -946,7 +946,7 @@ func (s *Server) handleInputCommand(client *Client, msg *Message) error {
if !s.loadedAndReady.Load() {
switch msg.Command() {
case "output", "ping", "echo":
case "output", "ping", "echo", "auth":
default:
return writeErr("LOADING Tile38 is loading the dataset in memory")
}