Skip to content

Commit c91b11d

Browse files
author
Till Brehm
committed
Introduced new -processing- state for remote actions. The -processing- state is set by long running background actions to allow the action procedure to proceed with the next action.
1 parent 0704085 commit c91b11d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

install/sql/incremental/upd_dev_collection.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ ALTER TABLE `mail_mailinglist` ADD `posting_policy` enum('closed','moderated','f
1212
ALTER TABLE `web_domain` CHANGE `folder_directive_snippets` `folder_directive_snippets` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL;
1313
ALTER TABLE `sys_user` ADD `last_login_ip` VARCHAR(50) NULL AFTER `lost_password_reqtime`;
1414
ALTER TABLE `sys_user` ADD `last_login_at` BIGINT(20) NULL AFTER `last_login_ip`;
15+
ALTER TABLE `sys_remoteaction` CHANGE `action_state` `action_state` ENUM('pending','processing','ok','warning','error') NOT NULL DEFAULT 'pending';

install/sql/ispconfig3.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1743,7 +1743,7 @@ CREATE TABLE `sys_remoteaction` (
17431743
`tstamp` int(11) NOT NULL DEFAULT '0',
17441744
`action_type` varchar(20) NOT NULL DEFAULT '',
17451745
`action_param` mediumtext,
1746-
`action_state` enum('pending','ok','warning','error') NOT NULL DEFAULT 'pending',
1746+
`action_state` enum('pending','processing','ok','warning','error') NOT NULL DEFAULT 'pending',
17471747
`response` mediumtext,
17481748
PRIMARY KEY (`action_id`),
17491749
KEY `server_id` (`server_id`)

0 commit comments

Comments
 (0)