geonode.management_commands_http.models

Classes

ManagementCommandJob

Stores the requests to run a management command using this app.

Module Contents

class geonode.management_commands_http.models.ManagementCommandJob[source]

Bases: django.db.models.Model

Stores the requests to run a management command using this app. It allows us to have more control over the celery TaskResults.

CREATED = 'CREATED'[source]
QUEUED = 'QUEUED'[source]
STARTED = 'STARTED'[source]
FINISHED = 'FINISHED'[source]
STATUS_CHOICES[source]
command[source]
app_name[source]
user[source]
created_at[source]
start_time[source]
end_time[source]
modified_at[source]
args[source]
kwargs[source]
celery_result_id[source]
output_message[source]
status[source]
clean()[source]
__str__()[source]