-
Notifications
You must be signed in to change notification settings - Fork 85
Fix/manual null scenario #1403
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Fix/manual null scenario #1403
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -445,8 +445,10 @@ public void SetRoomCombinationScenario(string scenarioKey) | |||||||||||||||||||||
| else | ||||||||||||||||||||||
| { | ||||||||||||||||||||||
| Debug.LogMessage(LogEventLevel.Debug, this, "Unable to find partition with key: '{0}'", partitionState.PartitionKey); | ||||||||||||||||||||||
| } | ||||||||||||||||||||||
| } | ||||||||||||||||||||||
| } | ||||||||||||||||||||||
| // Activates the scenario to prevent _currentScenario from being null when starting in manual mode. | ||||||||||||||||||||||
| ChangeScenario(scenario); | ||||||||||||||||||||||
|
||||||||||||||||||||||
| ChangeScenario(scenario); | |
| var _ = ChangeScenario(scenario).ContinueWith(t => | |
| { | |
| var ex = t.Exception != null ? t.Exception.Flatten() : null; | |
| if (ex != null) | |
| { | |
| Debug.LogMessage(LogEventLevel.Error, this, | |
| "Error changing scenario to '{0}': {1}", scenario.Key, ex); | |
| } | |
| }, TaskContinuationOptions.OnlyOnFaulted); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There appears to be trailing whitespace after the closing brace on this line. Please remove the extra spaces to avoid noisy diffs and keep formatting consistent.