Skip to content

Commit cb3a42a

Browse files
committed
Fix includes
1 parent 19edbf3 commit cb3a42a

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

server/idl/admin.thrift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
namespace java com.uber.cadence.admin
2222

23-
include "shared.thrift"
23+
include "./shared.thrift"
2424

2525
/**
2626
* AdminService provides advanced APIs for debugging and analysis with admin privillege
@@ -86,4 +86,4 @@ struct GetWorkflowExecutionRawHistoryResponse {
8686
20: optional list<shared.DataBlob> historyBatches
8787
30: optional map<string, shared.ReplicationInfo> replicationInfo
8888
40: optional i32 eventStoreVersion
89-
}
89+
}

server/idl/cadence.thrift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1919
// THE SOFTWARE.
2020

21-
include "shared.thrift"
21+
include "./shared.thrift"
2222

2323
namespace java com.uber.cadence
2424

server/idl/history.thrift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1919
// THE SOFTWARE.
2020

21-
include "shared.thrift"
21+
include "./shared.thrift"
2222

2323
namespace java com.uber.cadence.history
2424

server/idl/indexer.thrift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
namespace java com.uber.cadence.indexer
2222

23-
include "shared.thrift"
23+
include "./shared.thrift"
2424

2525
enum MessageType {
2626
Index
@@ -49,4 +49,4 @@ struct Message {
4949
40: optional string runID
5050
50: optional i64 (js.type = "Long") version
5151
60: optional map<string,Field> fields
52-
}
52+
}

server/idl/matching.thrift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1919
// THE SOFTWARE.
2020

21-
include "shared.thrift"
21+
include "./shared.thrift"
2222

2323
namespace java com.uber.cadence.matching
2424

server/idl/replicator.thrift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
namespace java com.uber.cadence.replicator
2222

23-
include "shared.thrift"
24-
include "history.thrift"
23+
include "./shared.thrift"
24+
include "./history.thrift"
2525

2626
enum ReplicationTaskType {
2727
Domain

server/idl/sqlblobs.thrift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
namespace java com.uber.cadence.sqlblobs
2222

23-
include "shared.thrift"
23+
include "./shared.thrift"
2424

2525
struct ShardInfo {
2626
10: optional i32 stolenSinceRenew
@@ -246,4 +246,4 @@ struct ReplicationTaskInfo {
246246
32: optional map<string, ReplicationInfo> lastReplicationInfo
247247
34: optional binary newRunBranchToken
248248
36: optional bool resetWorkflow
249-
}
249+
}

0 commit comments

Comments
 (0)