You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2022/08/30 19:54:53 UTC

[plc4x] 01/03: fix(protocols/bacnet): Updated the URL for fetching the vendor ids

This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit 16c7d377a59e45ea933a48cd09a148c237f2c4f7
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Tue Aug 30 21:51:07 2022 +0200

    fix(protocols/bacnet): Updated the URL for fetching the vendor ids
---
 protocols/bacnetip/src/main/script/getVendorIds.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/protocols/bacnetip/src/main/script/getVendorIds.groovy b/protocols/bacnetip/src/main/script/getVendorIds.groovy
index 0943ce1f1..0bf9e636b 100644
--- a/protocols/bacnetip/src/main/script/getVendorIds.groovy
+++ b/protocols/bacnetip/src/main/script/getVendorIds.groovy
@@ -45,7 +45,7 @@ if (bacnetVendorHtm.exists()) {
 // If we need to update the vendor ids
 if (update) {
     try {
-        InputStream inputStream = new URL("http://www.bacnet.org/VendorID/BACnet%20Vendor%20IDs.htm").openStream()
+        InputStream inputStream = new URL("https://bacnet.org/assigned-vendor-ids/").openStream()
         Files.copy(inputStream, bacnetVendorHtm.toPath(), StandardCopyOption.REPLACE_EXISTING)
         println "Successfully updated BACnet Vendor IDs.htm"
     } catch (Exception e) {