Skip to content

Instantly share code, notes, and snippets.

12.26 10:52:38 INFO : XMPPServer - Registering shutdown hook (standalone mode)
12.26 10:52:38 INFO : ConsistencyMonitor - Applying configuration for cache consistency check. Enabled: false
12.26 10:52:38 INFO : CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Routing Servers Cache
12.26 10:52:38 INFO : CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Routing Components Cache
12.26 10:52:38 INFO : CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Routing Users Cache
12.26 10:52:38 INFO : CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Routing AnonymousUsers Cache
12.26 10:52:38 INFO : CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheStrategy] for Routing User Sessions
12.26 10:52:38 INFO : CacheFactory - Created cache [org.jivesoftware.util.cache.DefaultLocalCacheS
@naive924
naive924 / gist:7d64160af504d0673983c7b70432f3d1
Created November 26, 2020 08:31
turn off openBridgeChannel: websocket
var config = {
"useNicks": false,
"disableAudioLevels": true,
"useIPv6": false,
"webrtcIceTcpDisable": false,
"defaultSipNumber": "",
"enableTcc": true,
"startBitrate": 800,
"enableWelcomePage": true,
"useStunTurn": false,
@naive924
naive924 / all.log
Last active November 18, 2020 08:09
Chorome 87 updated on November 17th disables audio and video from 3 users
2020.11.18 17:02:10 INFO [org.jitsi.utils.concurrent.RecurringRunnableExecutor.thread-VideobridgeExpireThread]: org.jitsi.videobridge.VideobridgeExpireThread - Running expire()
2020.11.18 17:02:12 WARN [EndpointConnectionStatusMonitoring]: org.jitsi.videobridge.EndpointMessageTransport - SCTP connection with e8050a3c not ready yet.
2020.11.18 17:02:12 WARN [EndpointConnectionStatusMonitoring]: org.jitsi.videobridge.EndpointMessageTransport - No available transport channel, can't send a message
2020.11.18 17:02:12 WARN [EndpointConnectionStatusMonitoring]: org.jitsi.videobridge.EndpointMessageTransport - SCTP connection with 3d89e199 not ready yet.
2020.11.18 17:02:12 WARN [EndpointConnectionStatusMonitoring]: org.jitsi.videobridge.EndpointMessageTransport - No available transport channel, can't send a message
2020.11.18 17:02:12 WARN [EndpointConnectionStatusMonitoring]: org.jitsi.videobridge.EndpointMessageTransport - SCTP connection with e8050a3c not ready yet.
2020.11.18 17:02:12 WARN [EndpointConne
@naive924
naive924 / gist:70d9f94f580c5a84576d4e6c08a3dbc5
Last active October 1, 2018 06:00
AssetBundle 対象のフォルダついて、Asset の依存関係も含めて実ファイルのハッシュ値を計算する
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
using UnityEditor;
@naive924
naive924 / gist:3c7f4f8f0595fbda1a30ef1aa876ed47
Last active October 1, 2018 06:00
Jenkins – 同一 branch を Groovy を使って排他制御
// 同一案件番号のジョブが実行されていたら待つ
waitForSameTargetJOB();
// マスタ系処理を実行
:
:
// -------------------------------
def waitForSameTargetJOB () {
def retrycount = 5000