util.startup: Use prosody. module namespace
authorKim Alvefur <zash@zash.se>
Fri, 24 Nov 2023 13:41:21 +0100
changeset 13346 d0a9b631a937
parent 13345 407174990ab0
child 13347 9a9455de295d
util.startup: Use prosody. module namespace Maybe we need some sort of lint for this?
util/startup.lua
--- a/util/startup.lua	Fri Nov 24 00:31:08 2023 +0100
+++ b/util/startup.lua	Fri Nov 24 13:41:21 2023 +0100
@@ -422,7 +422,7 @@
 	require "prosody.core.storagemanager";
 end
 
-local running_state = require "util.fsm".new({
+local running_state = require "prosody.util.fsm".new({
 	default_state = "uninitialized";
 	transitions = {
 		{ name = "begin_startup",   from = "uninitialized",           to = "starting" };