mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
CTLE-436: added missing null check
This commit is contained in:
@ -496,7 +496,7 @@ public class RunProcessAction
|
|||||||
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// if backend specifies that it uses variants, look for that data in the session and append to our basepull key //
|
// if backend specifies that it uses variants, look for that data in the session and append to our basepull key //
|
||||||
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
if(process.getSchedule().getVariantBackend() != null)
|
if(process.getSchedule() != null && process.getSchedule().getVariantBackend() != null)
|
||||||
{
|
{
|
||||||
QSession session = QContext.getQSession();
|
QSession session = QContext.getQSession();
|
||||||
QBackendMetaData backendMetaData = QContext.getQInstance().getBackend(process.getSchedule().getVariantBackend());
|
QBackendMetaData backendMetaData = QContext.getQInstance().getBackend(process.getSchedule().getVariantBackend());
|
||||||
|
Reference in New Issue
Block a user