Compare commits
No commits in common. "efc0dfdb6f1ebc93808b59ff7b2619a48aef69a0" and "32fb92fb8d14917c6ae82d42994b18770afeb025" have entirely different histories.
efc0dfdb6f
...
32fb92fb8d
2 changed files with 2 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
# ./cargo/config.toml
|
# ./cargo/config
|
||||||
[target.x86_64-unknown-linux-gnu]
|
[target.x86_64-unknown-linux-gnu]
|
||||||
linker = "/usr/bin/clang-16"
|
linker = "/usr/bin/clang-16"
|
||||||
rustflags = [
|
rustflags = [
|
||||||
|
|
|
@ -22,11 +22,7 @@ impl Handler<actor::messages::CloneRepo> for actor::RepoActor {
|
||||||
if self.repo_details.repo_config.is_none() {
|
if self.repo_details.repo_config.is_none() {
|
||||||
tracing::debug!("Handler: CloneRepo: Sending: LoadConfigFromRepo");
|
tracing::debug!("Handler: CloneRepo: Sending: LoadConfigFromRepo");
|
||||||
actor::logger(&self.log, "send: LoadConfigFromRepo");
|
actor::logger(&self.log, "send: LoadConfigFromRepo");
|
||||||
actor::do_send(
|
ctx.address().do_send(actor::messages::LoadConfigFromRepo);
|
||||||
ctx.address(),
|
|
||||||
actor::messages::LoadConfigFromRepo,
|
|
||||||
&self.log,
|
|
||||||
);
|
|
||||||
} else {
|
} else {
|
||||||
tracing::debug!("Handler: CloneRepo: Sending: ValidateRepo");
|
tracing::debug!("Handler: CloneRepo: Sending: ValidateRepo");
|
||||||
actor::logger(&self.log, "send: ValidateRepo");
|
actor::logger(&self.log, "send: ValidateRepo");
|
||||||
|
|
Loading…
Reference in a new issue