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
Fixed#22: ApiKey can't be changed after the client has been initialized.
@ejsmith Can you please review this change... I wasn't able to reproduce
the issue with autostart but I believe this commit and my previous
commit will resolve this issue.
_log.Value.FormattedInfo(typeof(ExceptionlessClient),"Configuration is invalid: {0}. The event will not be updated with the user email and description.",String.Join(", ",Configuration.Validate().Messages));
68
+
returnfalse;
69
+
}
70
+
66
71
if(!Configuration.IsLocked){
67
72
Configuration.LockConfig();
68
73
if(!Configuration.IsValid){
@@ -92,6 +97,11 @@ public Task ProcessQueueAsync() {
_log.Value.FormattedInfo(typeof(ExceptionlessClient),"Configuration is invalid: {0}. The queue will not be processed.",String.Join(", ",Configuration.Validate().Messages));
_log.Value.Info(typeof(ExceptionlessClient),"Configuration is disabled. The error will not be submitted.");
136
+
_log.Value.Info(typeof(ExceptionlessClient),"Configuration is disabled. The event will not be submitted.");
137
+
return;
138
+
}
139
+
140
+
if(!Configuration.IsValid){
141
+
_log.Value.FormattedInfo(typeof(ExceptionlessClient),"Configuration is invalid: {0}. The event will not be submitted.",String.Join(", ",Configuration.Validate().Messages));
0 commit comments