Party.PlatformSession.Create.AllowFailure

Party.PlatformSession.Create.AllowFailure

#Overview

name: Party.PlatformSession.Create.AllowFailure

This variable is created as a Console Variable (cvar).

It is referenced in 1 C++ source file.

#Summary

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Plugins/Online/OnlineFramework/Source/Party/Private/Party/PartyPlatformSessionMonitor.cpp:85

Scope: file

Source code excerpt:

static int32 AllowCreateSessionFailure = 1;
static FAutoConsoleVariableRef CVar_AllowCreateSessionFailure(
	TEXT("Party.PlatformSession.Create.AllowFailure"),
	AllowCreateSessionFailure,
	TEXT("Are we ok with allowing party session creation to fail? If not, we'll continuously retry until we succeed or leave the party."),
	ECVF_Default
);

static float EstablishSessionRetryDelay = 30.f;