Skip to content

Commit

Permalink
[Fixes #10474] fix importlayers
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiagiupponi committed May 3, 2023
1 parent ae16393 commit 3b5c745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geonode/geoserver/management/commands/importlayers.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def execute(self):
_exec = ExecutionRequest.objects.get(exec_id=exec_id)

while _exec.status.lower() in ['ready', 'running'] and start <= self.tentatives:
self.log.info("Execution is not completed yet, waiting for 15 secods")
print("Execution is not completed yet, waiting for 15 secods")
time.sleep(15)
start += 1
_exec.refresh_from_db()
Expand Down

0 comments on commit 3b5c745

Please sign in to comment.