Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
bergm committed Oct 21, 2024
1 parent 9d60e5c commit 5bd7a1c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/resource/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#define VERSION_MAJOR 3
#define VERSION_MINOR 6
#define VERSION_REVISION 25
#define VERSION_REVISION 26
#define VERSION_BUILD 214

#define VER_FILE_VERSION VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION, VERSION_BUILD
Expand Down
6 changes: 5 additions & 1 deletion src/run/run-monica-capnp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,11 @@ kj::Promise<void> RunMonica::run(RunContext context)
auto rs = context.getResults();
auto res = rs.initResult();
res.initStructure().setJson();
res.setValue(out.toString());
//auto v = res.initValue(8120);
std::cout << out.toString() << std::endl;
std::stringstream oss;
for(int i = 0; i < 8104; i++) oss << '.'; //v[i] = '.';
res.setValue(oss.str());//out.toString());
}, [context](auto &&e) mutable {
KJ_LOG(INFO, "Error while trying to gather soil and/or time series data: ", e);
auto rs = context.getResults();
Expand Down

0 comments on commit 5bd7a1c

Please sign in to comment.