Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

122 partitions #204

Merged
merged 31 commits into from
Feb 10, 2023
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
a4defea
generalization
Jan 23, 2023
0c4821e
Merge remote-tracking branch 'origin/develop' into ImpoveLogsV3
Jan 23, 2023
d4d1706
more concise switch
Jan 23, 2023
031d4aa
typo
Jan 23, 2023
ab444ac
messages fixed
Jan 23, 2023
9e72b82
Merge remote-tracking branch 'origin/develop' into ImpoveLogsV3
Jan 25, 2023
c1fc09a
changed api one again
Jan 25, 2023
85e4b85
api update
Jan 25, 2023
c365e98
new api
Jan 25, 2023
e4928e8
full update
Jan 25, 2023
c804607
start debugging
Jan 25, 2023
a708514
first attempt to fix the opening format. Not yet sure if it works. Th…
Jan 26, 2023
d0cb596
bug fix
Jan 27, 2023
3b83f57
fix
Jan 27, 2023
2c5e28f
restore unnecessary changes
Jan 27, 2023
6c13b65
reset unnecessary changes
Jan 27, 2023
bfae4b4
reset
Jan 27, 2023
12a7a97
reset
Jan 27, 2023
9b74947
Merge remote-tracking branch 'origin/develop' into 122_Partitions
Jan 27, 2023
04afa59
Merge remote-tracking branch 'origin/develop' into ImpoveLogsV3
Jan 27, 2023
23cc11f
new api
Jan 27, 2023
4fd3a16
new API in tests
Jan 27, 2023
098d9dd
identation
Jan 27, 2023
221aa1d
Merge branch 'develop' into ImpoveLogsV3
Feb 9, 2023
0d4c8e8
Merge branch 'ImpoveLogsV3' into 122_Partitions
Feb 9, 2023
b07578f
syntax change
Feb 9, 2023
394a489
Update ActivityLog.ipynb
andrey-katz-systemorph Feb 9, 2023
3b0b38b
idents fixed
Feb 10, 2023
b72d610
Merge remote-tracking branch 'origin/develop' into 122_Partitions
Feb 10, 2023
5309a8d
Merge branch 'ImpoveLogsV3' into 122_Partitions
Feb 10, 2023
f67a092
Update ActivityLog.ipynb
andrey-katz-systemorph Feb 10, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'origin/develop' into 122_Partitions
# Conflicts:
#	ifrs17/Utils/ActivityLog.ipynb
  • Loading branch information
akatz committed Feb 10, 2023
commit b72d610d8c0df797ce77a3a2ad0b7b7cbcb8d064
13 changes: 5 additions & 8 deletions ifrs17/Utils/ActivityLog.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,6 @@
"\n",
"\n public string Source {get; init;}",
"\n",
"\n public ImportFile() : base(){;}",
"\n",
"\n public ImportFile(FileImportOptions options, IDataSetImportVariable importVariable, ISessionVariable session)",
"\n {",
"\n Options = options;",
Expand Down Expand Up @@ -489,7 +487,7 @@
"\n FileImportOptions fio => await ReportInputAndUpdateActivityAsync<FileImportOptions, ImportFile>(log, fio, \"Import from File \"),",
"\n StringImportOptions sgio => await ReportInputAndUpdateActivityAsync<StringImportOptions, ImportString>(log, sgio, \"Import from String\"),",
"\n StreamImportOptions smio => await ReportInputAndUpdateActivityAsync<StreamImportOptions, ImportStream>(log, smio, \"Import from Stream\"),",
"\n DataSetImportOptions dsio => await ReportInputAndUpdateActivityAsync<DataSetImportOptions, ImportDataSet>(log, dsio, \"Import fro Data Set\"),",
"\n DataSetImportOptions dsio => await ReportInputAndUpdateActivityAsync<DataSetImportOptions, ImportDataSet>(log, dsio, \"Import from Data Set\"),",
"\n _ => null,",
"\n };",
"\n if (activity is null) throw new Exception(\"Import Options object is not an instance of an appropriate class.\");",
Expand All @@ -510,15 +508,14 @@
"\n .WithDataSetReader(ImportVariable)",
"\n .WithOptions(options)",
"\n .InitializeImportDataAsync() as TImport;",
"\n activity = activity with {SourceId = import.Id, ",
"\n Category = categoryMessage};",
"\n activity = activity with {SourceId = import.Id, Category = categoryMessage};",
"\n await DataSource.UpdateAsync<TImport>(import.RepeatOnce());",
"\n }",
"\n catch (Exception e)",
"\n {",
"\n activity = activity with {SourceId = null, ",
"\n\t\t\t\t\t\t\t\t\tCategory = categoryMessage,",
"\n ExceptionMessage = e.Message};",
"\n Category = categoryMessage, ",
"\n ExceptionMessage = e.Message};",
"\n }",
"\n return activity;",
"\n }",
Expand Down Expand Up @@ -588,4 +585,4 @@
"outputs": []
}
]
}
}
You are viewing a condensed version of this merge commit. You can view the full changes here.