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

no-dpki flag #236

Merged
merged 47 commits into from
Oct 1, 2024
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
a0fa5e6
Optional agent key for app installation
maackle Aug 23, 2024
e09b2fc
make compatibile with signal changes and pubkey as optional
JettTech Aug 23, 2024
a9e7422
update hc v; start dpki addition
JettTech Aug 24, 2024
d696d99
add no-dpki flag
JettTech Aug 26, 2024
e280c8e
make compatibile with signal changes and pubkey as optional
JettTech Aug 23, 2024
9cc3f8f
fix types and tests
JettTech Aug 26, 2024
903a2e5
assert type check
JettTech Aug 26, 2024
f94c472
lint
JettTech Aug 26, 2024
30cf7c9
merge fixes
JettTech Aug 26, 2024
a57e7e7
lint
JettTech Aug 26, 2024
e77c612
Merge branch 'develop' into no-dpki-flag
JettTech Aug 26, 2024
572231c
fix lints
jost-s Sep 3, 2024
5feeaeb
update holonix
jost-s Sep 3, 2024
3dc6469
build: fix js client dependency
jost-s Sep 3, 2024
d9eacc7
style: fix ts type
jost-s Sep 3, 2024
a56a691
Update Holochain version and fix some tests
ThetaSinner Sep 4, 2024
2e8cb45
fix(local): no-dpki option
jost-s Sep 23, 2024
033a5db
feat(local): dpki network seed option
jost-s Sep 23, 2024
ba5461f
feat(local): set shared dpki settings in scenario
jost-s Sep 23, 2024
43df54c
temporarily add nix flake to test
jost-s Sep 23, 2024
7530102
fix: make dpki and dpki-network-seed mutually exclusive
jost-s Sep 24, 2024
4bd5b23
build(nix): update flake & add system configuration pkg for macos
jost-s Sep 29, 2024
2949986
build: update JS client
jost-s Sep 29, 2024
3203cdf
test: fix signal types
jost-s Sep 29, 2024
0201154
test(trycp): fix no_dpki option
jost-s Sep 29, 2024
27e94bf
ci: add trycp to test workflow
jost-s Sep 29, 2024
3ded67a
build: update hdk & hdi in workspace
jost-s Sep 29, 2024
a1416e1
ci: run trycp intergration test in release mode
jost-s Sep 29, 2024
745f87e
tests: fix clone cell management
jost-s Sep 29, 2024
77e48d2
ci: fix trycp cache
jost-s Sep 29, 2024
2deaf4e
refactor(trycp_server): run lair in-process
jost-s Sep 29, 2024
27e7003
build(trycp_server): always build in release mode
jost-s Sep 29, 2024
d47a5bf
remove lair stderr from logs
jost-s Sep 29, 2024
a6b79a9
fix: bring back shared range of admin ports
jost-s Sep 30, 2024
58a8cc7
fix(trycp): multi server test
jost-s Sep 30, 2024
410fb24
refactor(trycp): log error when removing player dir
jost-s Sep 30, 2024
aa069e2
fix(trycp): handle startup errors
jost-s Sep 30, 2024
970398c
test: refactor integration
jost-s Sep 30, 2024
e84a061
refactor default config
jost-s Sep 30, 2024
1075589
fix reset error type
jost-s Oct 1, 2024
5b29483
feat(trycp: add call to revoke agent call
jost-s Oct 1, 2024
0b25d1c
test(local): add revoke agent key test
jost-s Oct 1, 2024
3386e31
docs: update changelog
jost-s Oct 1, 2024
1ace24a
test: fix multi server scenario
jost-s Oct 1, 2024
6c91b38
write errors to stdout
jost-s Oct 1, 2024
dc76355
address comments from review
jost-s Oct 1, 2024
f96c9f6
Apply suggestions from code review
jost-s Oct 1, 2024
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
write errors to stdout
jost-s committed Oct 1, 2024
commit 6c91b384593a040840011b0f69e2ae2e350a4277
4 changes: 2 additions & 2 deletions crates/trycp_server/src/startup.rs
Original file line number Diff line number Diff line change
@@ -104,7 +104,7 @@ pub fn startup(id: String, log_level: Option<String>) -> Result<(), Error> {
.unwrap_err();

if let Err(err) = conductor.kill() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Otherwise kill process.

eprintln!("could not kill Holochain process: {err}");
println!("could not kill Holochain process: {err}");
}
Err(error)
}
@@ -133,7 +133,7 @@ fn log_stdout(
while let Some(Ok(line)) = reader.next() {
if let Some(f) = &mut f {
if let Err(err) = writeln!(f, "{}: {}", context, line) {
eprintln!("could not write to log file: {err}");
println!("could not write to log file: {err}");
}
}
println!("{context}: {line}");