Cross Lee
Cross Lee
@greenlaw110 这个有空看一下吗?
@greenlaw110 how to reproduce: ``` @Every("10s") public void test(){ CacheService cache = Act.app().cache(); String old = cache.get("now"); cache.put("now", $.ms()); logger.debug("old : %s", old); } ``` result: 2021-08-16 15:23:52,196 DEBUG c.q.j.BaiduTTSTokenJob@[jobs-thread-1]...
我试了 1.9.2-snapshot 还是这个情况,不知道什么情况 code: ``` @Every("10s") public void test(){ CacheService cache = Act.app().cache(); String old = cache.get("now"); cache.put("now", $.ms()); logger.debug("old : %s", old); } ``` ``` Connected to the target...
@greenlaw110 这个不知道什么问题,为什么我的 Job 里每次取出来都是 null
> @CrossLee > > Please try 1.9.2-SNAPSHOT, add `-Djava.util.PropertyResourceBundle.encoding=UTF-8` to your JVM startup option verified ok.
reproduced in 1.9.2-SNAPSHOT
it's hard to reproduce again... if any update, i will comment here.
act provide http and websocket service
> @CrossLee this looks strange. Does your any one of your nginx configuration file has configured upstream to "http://localhost/wap/index?" Can you checkout the files under `/etc/nginx/conf` dir? The issue doesn't...
2018-12-8 20:05:00记录: 服务器出现502了,重启了act服务器就好了。我看了act日志和nginx日志,发现nginx出现:connect() failed (111: Connection refused) while connecting to upstream的时间点,act的WS在接受消息,接着就是很多no live upstreams while connecting to upstream。 12月4号是上次出现502,重启了act,并做了nginx.conf 的 localhost -> 127.0.0.1。 12月8号,19:01:10是今天nginx的第一条错误日志, **nginx error.log**  **act.log**: 19:01:10的时候正常接受请求,然后下面是websocket的请求,紧接着就没有http请求了,应该是nginx直接返回502了  先记录在这,这个问题还需要什么方法去证明去定位是不是act...