ipfabric_netbox 3.1.2__py3-none-any.whl → 3.1.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of ipfabric_netbox might be problematic. Click here for more details.
- ipfabric_netbox/__init__.py +2 -2
- ipfabric_netbox/views.py +1 -1
- {ipfabric_netbox-3.1.2.dist-info → ipfabric_netbox-3.1.3.dist-info}/METADATA +1 -1
- {ipfabric_netbox-3.1.2.dist-info → ipfabric_netbox-3.1.3.dist-info}/RECORD +5 -5
- {ipfabric_netbox-3.1.2.dist-info → ipfabric_netbox-3.1.3.dist-info}/WHEEL +0 -0
ipfabric_netbox/__init__.py
CHANGED
|
@@ -7,7 +7,7 @@ class NetboxIPFabricConfig(PluginConfig):
|
|
|
7
7
|
name = "ipfabric_netbox"
|
|
8
8
|
verbose_name = "NetBox IP Fabric SoT Plugin"
|
|
9
9
|
description = "Sync IP Fabric into NetBox"
|
|
10
|
-
version = "3.1.
|
|
10
|
+
version = "3.1.3"
|
|
11
11
|
base_url = "ipfabric"
|
|
12
12
|
min_version = "4.1"
|
|
13
13
|
|
|
@@ -32,7 +32,7 @@ class NetboxIPFabricConfig(PluginConfig):
|
|
|
32
32
|
|
|
33
33
|
if IPFabricTransformMap.objects.count() == 0:
|
|
34
34
|
data = requests.get(
|
|
35
|
-
"https://gitlab.com/ip-fabric/integrations/ipfabric-netbox/-/raw/main/scripts/transform_map.json"
|
|
35
|
+
"https://gitlab.com/ip-fabric/integrations/ipfabric-netbox/-/raw/main/scripts/transform_map.json", timeout=30
|
|
36
36
|
).json()
|
|
37
37
|
BuildTransformMaps(data=data)
|
|
38
38
|
except Exception as e:
|
ipfabric_netbox/views.py
CHANGED
|
@@ -142,7 +142,7 @@ class IPFabricTransformMapRestoreView(generic.ObjectListView):
|
|
|
142
142
|
IPFabricTransformMap.objects.all().delete()
|
|
143
143
|
try:
|
|
144
144
|
data = requests.get(
|
|
145
|
-
"https://gitlab.com/ip-fabric/integrations/ipfabric-netbox/-/raw/main/scripts/transform_map.json"
|
|
145
|
+
"https://gitlab.com/ip-fabric/integrations/ipfabric-netbox/-/raw/main/scripts/transform_map.json", timeout=30
|
|
146
146
|
).json()
|
|
147
147
|
except Exception as e:
|
|
148
148
|
messages.error(request, e)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
ipfabric_netbox/__init__.py,sha256=
|
|
1
|
+
ipfabric_netbox/__init__.py,sha256=DU_fAce-9eFn7mBlwSh4LS2omOsmKuieApsFV1b6wb0,1504
|
|
2
2
|
ipfabric_netbox/api/__init__.py,sha256=DOkvDAI4BoNgdCiNxfseeExEHyOrK8weG-LvjPRyK8A,101
|
|
3
3
|
ipfabric_netbox/api/nested_serializers.py,sha256=JwIlFpOHeiMB7F-sC0gx1f6qdNevS8NsXTUEHlVZeRs,2719
|
|
4
4
|
ipfabric_netbox/api/serializers.py,sha256=bTR3AJ81Q8HZI3iWLPc1tndGqD0erAbAD9hKLI4DTYY,4341
|
|
@@ -53,7 +53,7 @@ ipfabric_netbox/utilities/ipfutils.py,sha256=iupSEk5xNJOhK_-bJZNqZRc2damrcVSpM_i
|
|
|
53
53
|
ipfabric_netbox/utilities/logging.py,sha256=2OpWlqZ6Va2LEVXmIjiCvdZ8Ncx6brCvm_PzhjbMoTU,3221
|
|
54
54
|
ipfabric_netbox/utilities/nbutils.py,sha256=W-aorJjeIBYB80MAHmd1gpmhaZKH7R8lwIuCCbWWjh8,3117
|
|
55
55
|
ipfabric_netbox/utilities/transform_map.py,sha256=I24MI0kmnPm6PeSn-Bmzf5hJQNpJRRTtPLC0R7_s62A,1256
|
|
56
|
-
ipfabric_netbox/views.py,sha256=
|
|
57
|
-
ipfabric_netbox-3.1.
|
|
58
|
-
ipfabric_netbox-3.1.
|
|
59
|
-
ipfabric_netbox-3.1.
|
|
56
|
+
ipfabric_netbox/views.py,sha256=KHlKXC3rcQXA87_LKfHKIHzKIEejgFVitdBqLnQHx9c,28490
|
|
57
|
+
ipfabric_netbox-3.1.3.dist-info/METADATA,sha256=jQ3_O_FGDHOvm-Oh-_RA2mehmTHe3kj74cKh-g8iDu4,3573
|
|
58
|
+
ipfabric_netbox-3.1.3.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
59
|
+
ipfabric_netbox-3.1.3.dist-info/RECORD,,
|
|
File without changes
|