mirror of https://github.com/openspug/spug
parent
71f6450f36
commit
e4fa088915
|
@ -40,7 +40,7 @@ class ExecHistory(models.Model, ModelMixin):
|
||||||
digest = models.CharField(max_length=32, db_index=True)
|
digest = models.CharField(max_length=32, db_index=True)
|
||||||
interpreter = models.CharField(max_length=20)
|
interpreter = models.CharField(max_length=20)
|
||||||
command = models.TextField()
|
command = models.TextField()
|
||||||
params = models.CharField(max_length=500, default='{}')
|
params = models.TextField(default='{}')
|
||||||
host_ids = models.TextField()
|
host_ids = models.TextField()
|
||||||
updated_at = models.CharField(max_length=20, default=human_datetime)
|
updated_at = models.CharField(max_length=20, default=human_datetime)
|
||||||
|
|
||||||
|
|
|
@ -133,7 +133,7 @@ AUTHENTICATION_EXCLUDES = (
|
||||||
re.compile('/apis/.*'),
|
re.compile('/apis/.*'),
|
||||||
)
|
)
|
||||||
|
|
||||||
SPUG_VERSION = 'v3.2.2'
|
SPUG_VERSION = 'v3.2.3'
|
||||||
|
|
||||||
# override default config
|
# override default config
|
||||||
try:
|
try:
|
||||||
|
|
|
@ -10,4 +10,4 @@ export * from './functools';
|
||||||
export * from './router';
|
export * from './router';
|
||||||
export const http = _http;
|
export const http = _http;
|
||||||
export const history = _history;
|
export const history = _history;
|
||||||
export const VERSION = 'v3.2.2';
|
export const VERSION = 'v3.2.3';
|
||||||
|
|
Loading…
Reference in New Issue