Skip to content

Commit f660f37

Browse files
committed
from dev/src:
Fixed an incorrect value being passed to HEU_SessionManager::ConnectThriftSocketSession() in HEU_EditorMenu::ConnectSocketSession()
1 parent 2b04b52 commit f660f37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plugins/HoudiniEngineUnity/Editor/HEU_EditorMenu.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ public static void ConnectPipeSession()
9191
public static void ConnectSocketSession()
9292
{
9393
bool bResult = HEU_SessionManager.ConnectThriftSocketSession(HEU_PluginSettings.Session_Localhost,
94-
HEU_PluginSettings.Session_Port, HEU_PluginSettings.Session_AutoClose, HEU_PluginSettings.Session_Port);
94+
HEU_PluginSettings.Session_Port, HEU_PluginSettings.Session_AutoClose, HEU_PluginSettings.Session_Timeout);
9595
if (!bResult)
9696
{
9797
HEU_EditorUtility.DisplayErrorDialog("Connect Session", HEU_SessionManager.GetLastSessionError(), "OK");

0 commit comments

Comments
 (0)