aboutsummaryrefslogtreecommitdiffhomepage
path: root/Digitigrade/Job/RequestOutboundAuthToken.php
diff options
context:
space:
mode:
authorwinter2024-12-16 20:27:01 +0000
committerwinter2024-12-16 20:41:33 +0000
commit68c7e68b3f90fd980661774fdb2bb2d6140a34d0 (patch)
tree7993de39c7c637369bdbfb22e265319b43fcbf33 /Digitigrade/Job/RequestOutboundAuthToken.php
parent2f4c1de3509141880df019ef1a6cc65981b3f6ea (diff)
implement the other side of auth (hopefully?)
also mostly untested for the same reason as last time
Diffstat (limited to 'Digitigrade/Job/RequestOutboundAuthToken.php')
-rw-r--r--Digitigrade/Job/RequestOutboundAuthToken.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Digitigrade/Job/RequestOutboundAuthToken.php b/Digitigrade/Job/RequestOutboundAuthToken.php
index 69430c8..1786e32 100644
--- a/Digitigrade/Job/RequestOutboundAuthToken.php
+++ b/Digitigrade/Job/RequestOutboundAuthToken.php
@@ -17,7 +17,7 @@ class RequestOutboundAuthToken extends Job {
}
public function run() {
- Logger::getInstance()->info("responding to $this->domain's dialback challenge");
+ Logger::getInstance()->info("requesting token from $this->domain in response to their dialback challenge");
$instance = Instance::findByDomain($this->domain);
$instance->requestOutboundAuthToken($this->secret);
}