We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
StorageHost
The StorageNode.address and StorageNode.username columns aren't really node-specific, but rather specific to the host on which they are located.
StorageNode.address
StorageNode.username
From an object-oriented point of view, we should create a new StorageHost table to record these per-host:
def StorageHost(base_model): name = pw.CharField(max_length=64, unique=True) username = pw.CharField(max_length=64, null=True) address = pw.CharField(max_length=255, null=True)
then delete StorageNode.address and StorageNode.username, and convert StorageNode.host into a reference to that table.
StorageNode.host
Can't be done while we're still running alpenhorn-1, though.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
StorageNode.address
andStorageNode.username
columns aren't really node-specific, but rather specific to the host on which they are located.From an object-oriented point of view, we should create a new
StorageHost
table to record these per-host:then delete
StorageNode.address
andStorageNode.username
, and convertStorageNode.host
into a reference to that table.Can't be done while we're still running alpenhorn-1, though.
The text was updated successfully, but these errors were encountered: