Remove ununsed variables

This commit is contained in:
IshaVenikar 2025-01-31 17:14:29 +05:30
parent d0302d0153
commit 2ee65b8fd8
2 changed files with 2 additions and 1 deletions

View File

@ -141,6 +141,8 @@ export class Deployment {
@Column('boolean', { default: false }) @Column('boolean', { default: false })
isCurrent!: boolean; isCurrent!: boolean;
// TODO: Rename field
@Column('boolean', { default: false }) @Column('boolean', { default: false })
isDNS!: boolean; isDNS!: boolean;

View File

@ -28,7 +28,6 @@ const APP_DEPLOYMENT_REMOVAL_REQUEST_TYPE = 'ApplicationDeploymentRemovalRequest
const APP_DEPLOYMENT_RECORD_TYPE = 'ApplicationDeploymentRecord'; const APP_DEPLOYMENT_RECORD_TYPE = 'ApplicationDeploymentRecord';
const APP_DEPLOYMENT_REMOVAL_RECORD_TYPE = 'ApplicationDeploymentRemovalRecord'; const APP_DEPLOYMENT_REMOVAL_RECORD_TYPE = 'ApplicationDeploymentRemovalRecord';
const WEBAPP_DEPLOYER_RECORD_TYPE = 'WebappDeployer'; const WEBAPP_DEPLOYER_RECORD_TYPE = 'WebappDeployer';
const DNS_RECORD_TYPE = 'DnsRecord';
const SLEEP_DURATION = 1000; const SLEEP_DURATION = 1000;
// TODO: Move registry code to registry-sdk/watcher-ts // TODO: Move registry code to registry-sdk/watcher-ts