摘要:
原文链接:https://www.cnblogs.com/saryli/p/6928051.html MQTT-JMeter插件,您可以更为方便地添加MQTT连接、发布、订阅取样器,构造组合的应用场景,例如背景连接、多发少收、少发多收,计算消息转发时延等。利用该插件,我们为EMQ成功实施了包括百万级 阅读全文
摘要:
之前运营的好好的,一段时间没有顾及,然后就报错了 An unknown server-side error occurred while processing the command.Original error: Unable to start WebDriverAgent session bec 阅读全文
摘要:
innerHTML在JS是双向功能:获取对象的内容 或 向对象插入内容;如: <div id="demo">这是内容</div> ,我们可以通过 document.getElementById('demo').innerHTML 来获取id为aa的对象的内嵌内容;也可以对某对象插入内容,如 docu 阅读全文
摘要:
select * from show_center.biz_show where show_Name like '%黑小鸭%' order by update_time desc limit 10; select * from show_center.std_show where show_Name 阅读全文
摘要:
list,string,tuple,dictionary之间的转换https://blog.csdn.net/YQ1228/article/details/78542035 https://www.cnblogs.com/yigui/p/9500575.htmlrobotFrameWork http 阅读全文
摘要:
failureMessage0=`echo $failureMessage | sed 's/ /_/g'` 阅读全文
摘要:
Jumpserver开源堡垒机 阅读全文
摘要:
将失败的请求存入xml格式的文件中 选择想要的信息,信息太多是无用的,处理也不方便 #!/bin/bash # 文件路径 dir="/opt/monitorScript/mtl_pc.jmx" # jmter路径 jmterdir="/opt/jmeter5.1.1" ## 日志存储地址 log=" 阅读全文
摘要:
一、supervisor简介 Supervisor是用Python开发的一套通用的进程管理程序,能将一个普通的命令行进程变为后台daemon,并监控进程状态,异常退出时能自动重启。它是通过fork/exec的方式把这些被管理的进程当作supervisor的子进程来启动,这样只要在supervisor 阅读全文
摘要:
调试程序时,很多人喜欢直接用print来代替断点调试,而pysnooper模块比print更方便,以装饰器的形式存在 安装pysnooper模块 pip3 install pysnooper 具体使用 import pysnooper @pysnooper.snoop()def test(): a 阅读全文
摘要:
public class testTicketOID { public static void main(String[] args) throws IOException { String jsonStr = ""; try { File file = new File("/Users/jinya 阅读全文
摘要:
1. 'CocoaAsyncSocket/CocoaAsyncSocket.h' file not found /usr/local/n/versions/node/10.4.0/lib/node_modules/appium/node_modules/appium-xcuitest-driver/ 阅读全文
摘要:
执行命令: 公司概况 [x] 公司规模 [ ] 人员的组成 [ ] 公司赢利点 [ ] 公司面临的困难 [ ] 公司未来的发展方向 [ ] 公司重大新闻及人事调动 人员 老总 部门负责人 总监 开发人员 产品(PM) 测试人员 IT support人员 资源: 电脑硬件,打印机/复印机地址 电脑上工 阅读全文
摘要:
AccessKey ID: bbbAccess Key Secret: ddd AccessKey ID: aaaAccess Key Secret: ccc 一般的linux系统用下面的命令sed -i 's/aaa/bbb/g' *.propertiessed -i "s/aaa/bbb/g" 阅读全文
摘要:
delete poster from theatre_poster posterleft join theatre a on theatre_id = a.idwhere a.id is null 阅读全文
摘要:
最近修复的一个bug, 在prod上发生,但是在qa上没有发生。 在prod上也是偶现。 至少解决了 第一: 修复了订单创建失败,需要通知优惠券中台,“请将该优惠券释放” 第二: 我因为再去研究下为什么会下单失败,根据接口报的错是“优惠券已经被使用”,猜测是优惠券缓存不一致。 一台server优惠券 阅读全文
摘要:
SHOW INDEX FROM tm_show.tm_order; SHOW CREATE TABLE tm_show.tm_order; CREATE UNIQUE INDEX qianjinyan4ceshi ON tm_show.tm_order (orderNUmber); DROP IND 阅读全文
摘要:
import org.json.*; String avashowOID=""; JSONArray ShowALLStatus = new JSONArray(vars.get("data")); for(int i=0;i<ShowALLStatus.length();i++){ JSONObj 阅读全文
摘要:
Traceback (most recent call last): File "main.py", line 10, in <module> import HtmlTestRunnerModuleNotFoundError: No module named 'HtmlTestRunner' 阅读全文
摘要:
使用场景 当项目越来越庞大之后,不可避免的要拆分成多个子模块,我们希望各个子模块有独立的版本管理,并且由专门的人去维护,这时候我们就要用到git的submodule功能。 常用命令 git clone <repository> --recursive 递归的方式克隆整个项目 git submodul 阅读全文