Skip to content

Commit 5970210

Browse files
committed
fix: increase IP length to 64
1 parent 33daa87 commit 5970210

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/DIRAC/AccountingSystem/Client/Types/Network.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ def __init__(self):
1616

1717
# IPv6 address has up to 45 chars
1818
self.definitionKeyFields = [
19-
("SourceIP", "VARCHAR(39)"),
20-
("DestinationIP", "VARCHAR(39)"),
19+
("SourceIP", "VARCHAR(64)"),
20+
("DestinationIP", "VARCHAR(64)"),
2121
("SourceHostName", "VARCHAR(255)"),
2222
("DestinationHostName", "VARCHAR(255)"),
2323
("Source", "VARCHAR(255)"),

0 commit comments

Comments
 (0)