From acd230d7a90f3a15ad7e133c498056c335129f25 Mon Sep 17 00:00:00 2001 From: isc-tleavitt <73311181+isc-tleavitt@users.noreply.github.com> Date: Wed, 18 Oct 2023 14:20:28 -0400 Subject: [PATCH 1/2] Add prerelease designation (for ongoing work in this branch) --- module.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module.xml b/module.xml index 26a10fd5..294d9616 100644 --- a/module.xml +++ b/module.xml @@ -3,7 +3,7 @@ git-source-control - 2.3.0 + 2.3.0-oauth.1 Server-side source control extension for use of Git on InterSystems platforms git source control studio vscode module From 45f96a9fc6bbac960b989041ca32024fd7b1e204 Mon Sep 17 00:00:00 2001 From: isc-tleavitt <73311181+isc-tleavitt@users.noreply.github.com> Date: Wed, 18 Oct 2023 15:04:49 -0400 Subject: [PATCH 2/2] Fix compilation error --- cls/SourceControl/Git/Util/CredentialManager.cls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cls/SourceControl/Git/Util/CredentialManager.cls b/cls/SourceControl/Git/Util/CredentialManager.cls index 07ad4706..e76e515b 100644 --- a/cls/SourceControl/Git/Util/CredentialManager.cls +++ b/cls/SourceControl/Git/Util/CredentialManager.cls @@ -163,7 +163,7 @@ ClassMethod StartInternal() set daemon = ..%New() do daemon.Run() } catch err { - do LogForDaemon(err.DisplayString()) + do ..LogForDaemon(err.DisplayString()) } }