作者 lyh

gx

... ... @@ -64,7 +64,6 @@ class SyncProject extends Command
$data['data']['type'] = 4; //续费记录单
}
ProjectLogic::instance()->sync($data['data']);
$item->status = NoticeLog::STATUS_SUCCESS;
$item->save();
}catch (\Exception $e){
... ...
... ... @@ -24,9 +24,9 @@ class DeployBuild extends Base
public function getTestDomainAttribute(): string
{
$hashids = new Hashids('test_domain', 4, 'abcdefghjkmnpqrstuvwxyz1234567890');
$hashids = new Hashids('test_domain', 5, 'abcdefghjkmnpqrstuvwxyz1234567890');
$code = $hashids->encode($this->project_id);
return 'https://' . $code . '.test.com';
return 'https://v6-' . $code . 'globalso.site';
}
public static function clearCache($row){
... ...