03 2020 档案
摘要: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
阅读全文
摘要:option+comand+F ^ 替换 单引号' $ 替换 单引号'+逗号, 也可以用列编辑模式 comand+A,全部选中,之后进行command+shift+L列编辑模式,然后按下➡️,之后对列进行操作 这样将上一步查询到到结果,全部加上了引号,可以座位in的条件,再去查询 如果数据量少,只有
阅读全文
摘要:*** Settings *** Documentation Suite description Library RequestsLibrary *** Variables *** *** Keywords *** Call Get Request [Arguments] ${headers} ${
阅读全文