Skip to content

Commit

Permalink
added fix to CMS
Browse files Browse the repository at this point in the history
  • Loading branch information
smartguest committed Jul 18, 2023
1 parent e6a2302 commit 2b8c24f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -682,8 +682,8 @@ export class ConnectionManagementService extends Disposable implements IConnecti
connection.options = connectionErrorHandleResult.options;
}
if (connectionErrorHandleResult.reconnect) {
// Attempt reconnect if requested by provider
return this.connectWithOptions(connection, uri, options, callbacks);
// Attempt reconnect if requested by provider and reset URI to be regenerated.
return this.connectWithOptions(connection, undefined, options, callbacks);
} else {
if (callbacks.onConnectCanceled) {
callbacks.onConnectCanceled();
Expand Down

0 comments on commit 2b8c24f

Please sign in to comment.