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
$ZV: IRIS for UNIX (Ubuntu Server LTS for x86-64 Containers) 2024.1.2 (Build 398U) Thu Oct 3 2024 14:20:43 EDT
Error log:
USER>do ##class(SourceControl.Git.Utils).ImportAll()
==import start==
set itemList(..NameToInternalName(configFilePath)) = ""
^
<SUBSCRIPT>ListItemsInFiles+5^SourceControl.Git.Utils.1 *itemList() Subscript 1 is ""
USER>
The error seems to originate from the ##class(%File).NormalizeFilename(##class(SourceControl.Git.Settings.Document).#EXTERNALNAME, ..TempFolder()) method returning an empty string and ##class(%File).Exists(##class(%File).NormalizeFilename("")) returning 1 (true) because ##class(%File).NormalizeFilename("") returns the current work directory, consequently entering the following if statement with configFilePath set to ""
For context, I realized later that the /irisdata/durable/mgr/repo/USER/embedded-git-config.json file does not exist on the machine. Nevertheless, it should have been skipped instead of entering this if statement
The text was updated successfully, but these errors were encountered:
2.10.0
IRIS for UNIX (Ubuntu Server LTS for x86-64 Containers) 2024.1.2 (Build 398U) Thu Oct 3 2024 14:20:43 EDT
Error log:
The error seems to originate from the
##class(%File).NormalizeFilename(##class(SourceControl.Git.Settings.Document).#EXTERNALNAME, ..TempFolder())
method returning an empty string and##class(%File).Exists(##class(%File).NormalizeFilename(""))
returning 1 (true) because##class(%File).NormalizeFilename("")
returns the current work directory, consequently entering the following if statement withconfigFilePath
set to ""git-source-control/cls/SourceControl/Git/Utils.cls
Line 1497 in d477eb6
see the following terminal log:
For context, I realized later that the
/irisdata/durable/mgr/repo/USER/embedded-git-config.json
file does not exist on the machine. Nevertheless, it should have been skipped instead of entering this if statementThe text was updated successfully, but these errors were encountered: