Opened 14 years ago
Closed 14 years ago
#1530 closed defect (fixed)
MaestroAPI: Creating LocalNativeConnection by SessionId leads to an error
Reported by: | gBecker | Owned by: | jng |
---|---|---|---|
Priority: | medium | Milestone: | |
Component: | Maestro | Version: | 2.2.0 |
Severity: | trivial | Keywords: | |
Cc: | External ID: |
Description
While trying to re-create a LocalNativeConnection by a given session I found a bug in line 88 of ConnectionFactory.cs:
return ConnectionProviderRegistry.CreateConnection("Maestro.LocalNative", sessionid);
I must look like this:
return ConnectionProviderRegistry.CreateConnection("Maestro.LocalNative", builder.ToString());
Note:
See TracTickets
for help on using tickets.
Fixed r5402