FIX: fix test code

This commit is contained in:
이수준 2023-10-12 09:53:29 +09:00
parent 15c1d09923
commit 84f6d9341f
2 changed files with 5 additions and 4 deletions

View File

@ -17,10 +17,10 @@ with open(f'/usr/local/sdt/app/{args.config}/config.yaml', encoding='UTF-8') as
# mqttc = mqtt.Client() # puclisher 이름 # mqttc = mqtt.Client() # puclisher 이름
# mqttc.username_pw_set("sdt", "251327") # mqttc.username_pw_set("sdt", "251327")
# mqttc.connect("13.209.39.139", 32259) # mqttc.connect("13.209.39.139", 32259)
f = open(f'/usr/local/sdt/app/{args.config}/text.txt') # f = open(f'/usr/local/sdt/app/{args.config}/text.txt')
# f = open(f'./text.txt', 'w') f = open(f'/home/sdt-dev1/text.txt', 'w')
while True: while True:
f.write(f"Config value: {yamlData['topic']} \n") f.write(f"Config value: {yamlData['topic']}\n")
# print(f"Config value: {yamlData['topic']}") # print(f"Config value: {yamlData['topic']}")
# dataList = [] # dataList = []
# for n in range(10): # for n in range(10):
@ -39,3 +39,4 @@ while True:
# "data": dataList # "data": dataList
# }) # })
# mqttc.publish(f"/device-test/{yamlData['topic']}", datas) # topic, message # mqttc.publish(f"/device-test/{yamlData['topic']}", datas) # topic, message
f.close()

View File

@ -1 +1 @@
TEST!!! TEST!!!hi