You are here

function node_import_lock_release in Node import 6

Release our node_import lock.

Return value

Nothing.

Related topics

1 call to node_import_lock_release()
node_import_do_task in ./node_import.inc
Import a number of rows from the specified task. Should only be called from within hook_cron() or from a JS callback as this function may take a long time.
1 string reference to 'node_import_lock_release'
node_import_lock_acquire in ./node_import.inc
Acquire or release our node_import lock.

File

./node_import.inc, line 2215
Public API of the Node import module.

Code

function node_import_lock_release() {
  node_import_lock_acquire(TRUE);
}