mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
Merge pull request #6731 from vladmandic/state_server_start
Add server start time to state info
This commit is contained in:
commit
ce9827a7c5
@ -168,6 +168,7 @@ class State:
|
|||||||
textinfo = None
|
textinfo = None
|
||||||
time_start = None
|
time_start = None
|
||||||
need_restart = False
|
need_restart = False
|
||||||
|
server_start = None
|
||||||
|
|
||||||
def skip(self):
|
def skip(self):
|
||||||
self.skipped = True
|
self.skipped = True
|
||||||
@ -241,6 +242,7 @@ class State:
|
|||||||
|
|
||||||
|
|
||||||
state = State()
|
state = State()
|
||||||
|
state.server_start = time.time()
|
||||||
|
|
||||||
artist_db = modules.artists.ArtistsDatabase(os.path.join(script_path, 'artists.csv'))
|
artist_db = modules.artists.ArtistsDatabase(os.path.join(script_path, 'artists.csv'))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user