Skip to content

Commit

Permalink
Urgent fix for #11
Browse files Browse the repository at this point in the history
  • Loading branch information
vody committed Jul 13, 2023
1 parent 59f99ce commit e1a1e37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
1 change: 1 addition & 0 deletions DOCS/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!---for any bug fixes--->
- Extension somehow breaks other extensions install [#18](https://github.com/thetanz/OpenFeature-al/issues/18)
- InherentPermissions to simplify permissions [#13](https://github.com/thetanz/OpenFeature-al/issues/13)
- SetContext Operation exceeded time threshold (AL method) [#11](https://github.com/thetanz/OpenFeature-al/issues/11)
### Added
<!---for new features--->
- Code documentation for public APIs, public enums and interfaces
Expand Down
11 changes: 2 additions & 9 deletions MAIN/src/Providers/PostHogProvider.Codeunit.al
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,8 @@ codeunit 58653 "PostHogProvider_FF_TSL" implements IProvider_FF_TSL

[NonDebuggable]
internal procedure SetContext(ConnectionInfo: JsonObject; ContextUserSecurityID: Guid)
var
User: Record User;
begin
if not IsNullGuid(ContextUserSecurityID) then
User.SetRange("User Security ID", ContextUserSecurityID);
if User.FindSet() then
repeat
CreateIdentity(User, ConnectionInfo)
until User.Next() = 0
begin

end;

[NonDebuggable]
Expand Down

0 comments on commit e1a1e37

Please sign in to comment.