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 base path URL contains malformed syntax with double protocol prefix and double slashes. This will cause connection failures when the SDK attempts to make API calls.
The version has been changed from 2.0.1 to 1.0.8, which appears to be a downgrade. This could cause issues with package management and dependency resolution.
The URL contains an invalid protocol format with "http://https://". This will cause connection failures when making API requests. Remove the "http://" prefix to use only "https://".
-self._base_path = "http://https://your-workplace-console.com//api" if host is None else host+self._base_path = "https://your-workplace-console.com/api" if host is None else host
[To ensure code accuracy, apply this suggestion manually]
Suggestion importance[1-10]: 10
__
Why: The suggestion correctly identifies a malformed URL (http://https://...) in the default _base_path which would cause connection failures. This is a critical bug introduced in the PR that needs to be fixed.
High
Fix malformed host URL
The host setting URL has the same malformed protocol issue with "http://https://". This will prevent proper API endpoint resolution. Use the correct HTTPS URL format.
[To ensure code accuracy, apply this suggestion manually]
Suggestion importance[1-10]: 10
__
Why: The suggestion correctly identifies another instance of a malformed URL (http://https://...) in the host settings. This is a critical bug that would break functionality and was introduced in this PR.
High
More
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.