You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bigoDeployment should be loaded without warning.
What did actually happened?
While issuing the command BIGOs = GearKit.bigoDeployment.load(<filepath>); the following warning occurs:
Warning: While loading an object of class 'GearKit.bigoDeployment':
Invalid or unknown gearType ''.
> In GearKit.gearDeployment.load (line 8)
Warning: While loading an object of class 'GearKit.bigoDeployment':
Invalid or unknown gearType ''.
> In matlab.io.MatFile/genericWho (line 209)
In matlab.io.MatFile/whos (line 309)
In matlab.io.MatFile (line 422)
In matfile (line 75)
In GearKit.gearDeployment.load (line 12)
Steps to reproduce the bug
Save a bigoDeployment instance to disk.
Clear the workspace.
Reload the instance from disk using the command mentioned above.
Causes & solutions
GearKit.gearDeployment.loadobj is called multiple times. The first time around, the struct contains all undefined entries. Thus the error in the switch statement is thrown as the gearType is not set yet.
The text was updated successfully, but these errors were encountered:
System information
Bug description
What should have happened?
The bigoDeployment should be loaded without warning.
What did actually happened?
While issuing the command
BIGOs = GearKit.bigoDeployment.load(<filepath>);
the following warning occurs:Steps to reproduce the bug
Causes & solutions
GearKit.gearDeployment.loadobj
is called multiple times. The first time around, the struct contains all undefined entries. Thus the error in the switch statement is thrown as the gearType is not set yet.The text was updated successfully, but these errors were encountered: